##redis配置详解 # Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf # Note on units: when memory size is needed, i…
Also available on Github JSHint配置详解 增强参数(Enforcing Options) 本类参数设为true,JSHint会产生更多告警. bitwise 禁用位运算符(如^,|,&) 位运算符在JS中很少使用,性能也较差,出现&也很可能是想写&&. camelcase 使用驼峰命名(camelCase)或全大写下划线命名(UPPER_CASE) 这是条最佳实践,关键不在于采用什么样的命名规则(比如纯小写配下划线),而在于要有规则,在代码中看…