原创文章,转载请注明出处:server非业余研究http://blog.csdn.net/erlib 作者Sunface联系邮箱:cto@188.comMemoryThe memory reported by the Erlang VM in most tools will be a variant ...
分类:
其他好文 时间:
2017-05-03 11:31:59
阅读次数:
182
1.Why do we never have time to do it right, but always have time to do it over? (Anonymous) 为什么我们总是没有时间把事情做对,却有时间做完它? 2.Don’t worry if it doesn’t work ...
分类:
其他好文 时间:
2017-04-13 17:46:07
阅读次数:
259
减少跳转语句失效时CPU等待取指令时间,提高CPU效率 使用__builtin_expect(EXP,N) 意思是EXP==N的概率很大 一般封装为LIKELY和UNLIKELY宏 #define LIKELY(x) __builtin_expect(!!(x),1) 很可能为真 #define U ...
分类:
其他好文 时间:
2017-04-11 11:45:15
阅读次数:
167
问题1:max_map_count不够大 max virtual memory areas vm.max_map_count [65536] likely too low, increase to at least [262144] 解决:内核参数(max_map_count) cat /proc/ ...
分类:
其他好文 时间:
2017-03-29 16:04:09
阅读次数:
467
The source code: a) Control flow b) The simple fault that t2(n=5) would be more likely to discover than t1(n=3) would is the index of the array out of ...
分类:
其他好文 时间:
2017-03-14 21:09:55
阅读次数:
278
为什么es需要优化? 答: 怎么来做好es的优化工作? 1、解决es启动的警告信息【或者es中Too many open files的问题】 max file descriptors [4096] for elasticsearch process likely too low, consider ...
分类:
其他好文 时间:
2017-02-28 15:14:22
阅读次数:
860
摘自:http://aircconline.com/ijdkp/V4N6/4614ijdkp04.pdf In the syntactical approach we define binary attributes that correspond to each fixed length subs ...
分类:
其他好文 时间:
2017-02-20 18:35:24
阅读次数:
224
1.首先导入系统库Security.framework 2.创建文件SFHFKeychainUtils.h如下(复制即可): @interface SFHFKeychainUtils : NSObject { } + (NSString *) getPasswordForUsername: (NSS ...
分类:
移动开发 时间:
2017-02-04 00:10:15
阅读次数:
451
Caused by: org.elasticsearch.hadoop.EsHadoopIllegalArgumentException: Cannot determine write shards for [CC-2017.01.24/compliance]; likely its format ...
分类:
其他好文 时间:
2017-01-24 20:11:46
阅读次数:
1750
1. likely 和 unlikely用于分支预测的优化 如果一个分支命中的概率比较小,使用unlikely 如果相反,则用likely 可参考: http://www.cnblogs.com/lhfcws/p/3205366.html 2. pthread_once 多线程环境中保证函数只执行一 ...
分类:
其他好文 时间:
2017-01-20 14:32:44
阅读次数:
1532