大约有 3,000 项符合查询结果(耗时:0.0221秒) [XML]

https://www.tsingfun.com/it/bigdata_ai/634.html 

淘宝应对双\"11\"的技术架构分析 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...一定是从底层存储层层传递,最终通过HTTP头返回给用户浏览的。 缓存系统不得不考虑的另一个问题是缓存穿透与失效时的雪崩效应。缓存穿透是指查询一个一定不存在的数据,由于缓存是不命中时被动写的,并且出于容错考...
https://www.tsingfun.com/it/tech/886.html 

快速开发CSS的利器LESS 系列教程 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...达到控制公用样式中属性值的方法,最为常用的地方在于浏览兼容问题严重的CSS3样式的书写。 来看一个案例: .border-radius( @radius: 10px ) { -webkit-border-radius: @radius; -moz-border-radius: @radius; border-radius: @radius; } 在这...
https://www.tsingfun.com/it/tech/864.html 

PHP中9大缓存技术总结 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...次访问一个商品就要去数据库查一次,如果有10万人在线浏览商品,那服务器压力就大了; 6、内存式缓存 提到这个,可能大家想到的首先就是Memcached;memcached是高性能的分布式内存缓存服务器。 一般的使用目的是,通过缓存...
https://stackoverflow.com/ques... 

“simple” vs “current” push.default in git for decentralized workflow

...ng branch: $ git branch -vvv master 58d9fdc [origin/master: ahead 1] t1 bobo * new 37132d3 [origin/save: ahead 1] t1 bibi # <- tracking branch 'save' $ git -c push.default=current push # <- set `push.default=current` Counting objects: 3, done. Writing objects: 100% (3/3...
https://www.tsingfun.com/it/tech/1215.html 

构建高并发高可用的电商平台架构实践 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...长连接,全双工通信 是 Html5 的一种新的协议。它实现了浏览与服务器的双向通讯。webSocket API 中,浏览和服务器端只需要通过一个握手的动作,便能形成浏览与客户端之间的快速双向通道,使得数据可以快速的双向传播...
https://stackoverflow.com/ques... 

How to post JSON to PHP with curl

...uble quotes as Josef suggested above. He is right. – Bobo May 9 '12 at 19:35 add a comment  |  ...
https://www.tsingfun.com/it/tech/1069.html 

Nginx与Lua - 更多技术 - 清泛网 - 专注C/C++及内核技术

...的代码加入到Nginx的配置文件nginx.conf,并重启Nginx,然后浏览,就能看到效果了。 location /lua { set $test "hello, world."; content_by_lua ' ngx.header.content_type = "text/plain"; ngx.say(ngx.var.test); '; } 在深入学习ngx_lua之...
https://stackoverflow.com/ques... 

Why have header files and .cpp files? [closed]

... @Bobo : Why can't I be sure, that foo(bar) is a function : foo could be a type, so you would have a class constructor called. In fact, speaking of bad design, I blame C, not C++ : I can blame C for a lot of things, but having ...
https://www.tsingfun.com/it/da... 

REDHAT 6.4 X64下ORACLE 11GR2静默安装 - 数据库(内核) - 清泛网 - 专注C/C++及内核技术

...数据库企业管理器 [oracle@redhat ~]$ emctl start dbconsole 在浏览中输入下列地址 https://192.168.8.106:1158/em/console/logon/logon 使用用户名system密码oracle登陆 总结 库的创建我偷懒了。dbca.rsp 这个文件我没有研究透,直接使用命...
https://www.tsingfun.com/it/tech/900.html 

移动前端开发之viewport的深入理解 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...能用来显示我们的网页的那一块区域,在具体一点,就是浏览上(也可能是一个app中的webview)用来显示网页的那部分区域,但viewport又不局限于浏览可视区域的大小,它可能比浏览的可视区域要大,也可能比浏览的可视区...