supervisor进程管理器 1. 安装依赖yum install python-setuptools-devel 2. 安装supervisorpip install supervisor 或者 easy_install supervisor 3. 生成配置文件echo_supervisord_ ...
分类:
移动开发 时间:
2017-09-05 17:53:58
阅读次数:
428
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist ...
分类:
其他好文 时间:
2017-09-05 13:25:33
阅读次数:
239
HTTP1.0HTTP1.1主要区别长连接HTTP1.0需要使用keep-alive参数来告知服务器端要建立一个长连接,而HTTP1.1默认支持长连接。HTTP是基于TCP/IP协议的,创建一个TCP连接是需要经过三次握手的,有一定的开销,如果每次通讯都要重新建立连接的话,对性能有影响。因此最好能维持一个长..
分类:
Web程序 时间:
2017-09-05 00:16:34
阅读次数:
147
Once user sign up, we store the user data inside cookie in the broswer and also keep a memory copy in the server. If next time, user refresh the page, ...
分类:
Web程序 时间:
2017-09-04 22:34:41
阅读次数:
283
GET/mycode/2.gifHTTP/1.1【表示发送的是GET请求,请求资源是/mycode/2.gif,协议HTTP/1.1】Host:localhost【主机】Connection:keep-alive【(长链接)普通报头域允许发送指定连接的选项。例如指定连接是连续,或者指定"close"... ...
分类:
Web程序 时间:
2017-09-04 10:55:58
阅读次数:
193
HTTP协议详解Requsert Headers 浏览器 向服务器 发送的 请求信息Get /Myweb/persons.html HTTP/1.1 (必须)Host:localhost:8080Connection:keep-alive Accept支持格式:Accept: text/html,a ...
分类:
编程语言 时间:
2017-09-03 22:16:04
阅读次数:
172
### python版本:2.7.13 pykafka版本:2.6.0 注明:python 3.6.2版本会报错。 备注:这个是一个通过pykafka模块向kafka生产数据 Github地址:https://github.com/Parsely/pykafka Pykafka Doc:http:/ ...
分类:
编程语言 时间:
2017-09-03 18:43:52
阅读次数:
784
开发验证的好好的功能,提测后经常有测试反应功能有bug。很多原因都是测试切换host没生效造成的,为什么切换host后刷新页面了也没生效呢? 不生效原因: Keep-Alive 服务器在响应头设置了 Connection: keep-alive (一般的网页都会设置 keep-alive,保持长连接 ...
分类:
其他好文 时间:
2017-09-03 11:12:13
阅读次数:
149
写一个 function,它遍历数组 arr,并返回数组中第一个满足 func 返回值的元素。举个例子,如果 arr 为 [1, 2, 3],func 为 function(num) {return num 2; },那么 find 的返回值应为 2。 如果你被卡住了,记得开大招 Read-Sear ...
分类:
其他好文 时间:
2017-09-02 15:41:49
阅读次数:
103
(一) 对象更新校验方式: HTTP通过两种方式验证对象是否有更新if-non-match 或者 if-modified-since. 通过在Request中包含上述header向服务器发起询问。当response中包含E-tag头时,浏览器应该使用if-non-match来询问;response中 ...
分类:
Web程序 时间:
2017-09-02 01:02:45
阅读次数:
298