Kibana 4的查询速度比Kibana 3慢是怎么回事?
最近升级了公司线上的ELK日志系统,ElasticSearch 从1.3升级到了1.7,并且重新部署了新的Kibana 4, 和Kibana 3 同时在使用。 现在elasticsearch仍然…
javascript对象池是什么鬼来的?求指指点点
javascript/* * The object to be held within the Object Pool. */ function Obj() { this.inUse = false // Is true if the object is currently i…
Android中这种情况下是否应该使用枚举
问题背景: 我们假设这样一种需求,需要在程序运行中,根据不同的网络请求错误显示不同的错误码(errorCode),有的时候还要把错误信息(errorMsg)记入…
XHR Load 在 Chrome Devtools Timeline 当中耗时 1s 以上, 怎样优化?
处理滚动事件的时候, 滚动到顶部加载的, mousewheel 事件 _.debouce 去触发 Ajax. 但是有遇到几次 scroll 被卡住的问题, 于是用 Timeline 检测了下, …
关于data uri的嵌入方式
为了避免src='...'引号中的一大串编码阻碍视线、占用流量,我用了另一种方式。 css: img{background: url(...) no-repeat} //url中填写data uri htm…