redis详细配置
1 ##redis配置详解 2 3 # Redis configuration file example. 4 # 5 # Note that in order to read the configuration file, Redis must be 6 # started with the file path as first argument: 7 # 8 # ./redis-server /path/to/redis.conf 9 10 # Note on units: when memory size is needed, it is possible to specify 11 # it in the usual form of 1k 5GB 4M and so forth: 12 # 13 # 1k => 1000 bytes 14 # 1kb => 1024 bytes 15 # 1m => 1000000 bytes 16 # 1mb => 1024*1024 bytes 17 # 1g => 1000000000 bytes 18 # 1gb => 1024*1024*1024 bytes 19 # 20 # units are case insensitive so 1GB 1Gb 1gB are all the same. 21 22 ###########