当前位置:   article > 正文

Redis 教程系列之Redis 配置(三)

Redis 教程系列之Redis 配置(三)

Redis 配置

Redis 的配置文件位于 Redis 安装目录下,文件名为 redis.conf(Windows 名为 redis.windows.conf)。

你可以通过 CONFIG 命令查看或设置配置项。

语法

Redis CONFIG 命令格式如下:

redis 127.0.0.1:6379> CONFIG GET CONFIG_SETTING_NAME

实例

  1. redis 127.0.0.1:6379> CONFIG GET loglevel
  2. 1) "loglevel"
  3. 2) "notice"

使用 * 号获取所有配置项:

实例

  1. redis 127.0.0.1:6379> CONFIG GET *
  2. 1) "dbfilename"
  3. 2) "dump.rdb"
  4. 3) "requirepass"
  5. 4) ""
  6. 5) "masterauth"
  7. 6) ""
  8. 7) "unixsocket"
  9. 8) ""
  10. 9) "logfile"
  11. 10) ""
  12. 11) "pidfile"
  13. 12) "/var/run/redis.pid"
  14. 13) "maxmemory"
  15. 14) "0"
  16. 15) "maxmemory-samples"
  17. 16) "3"
  18. 17) "timeout"
  19. 18) "0"
  20. 19) "tcp-keepalive"
  21. 20) "0"
  22. 21) "auto-aof-rewrite-percentage"
  23. 22) "100"
  24. 23) "auto-aof-rewrite-min-size"
  25. 24) "67108864"
  26. 25) "hash-max-ziplist-entries"
  27. 26) "512"
  28. 27) "hash-max-ziplist-value"
  29. 28) "64"
  30. 29) "list-max-ziplist-entries"
  31. 30) "512"
  32. 31) "list-max-ziplist-value"
  33. 32) "64"
  34. 33) "set-max-intset-entries"
  35. 34) "512"
  36. 35) "zset-max-ziplist-entries"
  37. 36) "128"
  38. 37) "zset-max-ziplist-value"
  39. 38) "64"
  40. 39) "hll-sparse-max-bytes"
  41. 40) "3000"
  42. 41) "lua-time-limit"
  43. 42) "5000"
  44. 43) "slowlog-log-slower-than"
  45. 44) "10000"
  46. 45) "latency-monitor-threshold"
  47. 46) "0"
  48. 47) "slowlog-max-len"
  49. 48) "128"
  50. 49) "port"
  51. 50) "6379"
  52. 51) "tcp-backlog"
  53. 52) "51
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/326256
推荐阅读
相关标签
  

闽ICP备14008679号