fisher
fisher
line-reader 看起来对大文件性能欠优,并且对单行大小无限制。 需测试出结论。 并对比: n-readlines linebyline
ipv6
should support ipv6 listening
each app process can be limited by cgroup
for now tengine not yet support stream proxy(based on nginx v1.8, the next major version will rebase to v1.9+). so default honeycomb-server using node-proxy instead. nginx(since v1.9) already support stream...
在现有集群上增加机器时,自动同步应用和配置过去
通过重写 run.js中的 `net.Server.prototype.listen()`, 可以无感知的替换监听端口为domain-sock, 再通过process.honeycomb提供接口启动,看起来可以做到比现在的app挂载方式更优雅 file: run.js ``` net.Server.prototype.listen = () => { }; process.honeycomb = { targetSock, config, ready: function (config) { } }; ``` app的编写就简化为: file: app.js ```...
compare these situation: ``` * simple Node.js http app (cluster mode) * simple Node.js http app (nginx upstream with apps listen on ports) * honeycomb server (nginx upstream with apps...