Advertisement
Guest User

redis.conf

a guest
Dec 14th, 2022
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. loadmodule /redisgraph.so CACHE_SIZE 1 THREAD_COUNT 2
  2. bind 127.0.0.1
  3. protected-mode yes
  4. port 0
  5. tcp-backlog 511
  6. unixsocket /test_socket.sock
  7. unixsocketperm 700
  8. timeout 0
  9. tcp-keepalive 300
  10. daemonize no
  11. supervised no
  12. pidfile /var/run/redis_6379.pid
  13. loglevel notice
  14. logfile ""
  15. databases 16
  16. always-show-logo yes
  17. save ""
  18. stop-writes-on-bgsave-error yes
  19. rdbcompression yes
  20. rdbchecksum yes
  21. dbfilename dump.rdb
  22. rdb-del-sync-files no
  23. dir ./
  24. replica-serve-stale-data yes
  25. replica-read-only yes
  26. repl-diskless-sync no
  27. repl-diskless-sync-delay 5
  28. repl-diskless-load disabled
  29. repl-disable-tcp-nodelay no
  30. replica-priority 100
  31. acllog-max-len 128
  32. maxclients 4000
  33. lazyfree-lazy-eviction no
  34. lazyfree-lazy-expire no
  35. lazyfree-lazy-server-del no
  36. replica-lazy-flush no
  37. lazyfree-lazy-user-del no
  38. io-threads 4
  39. io-threads-do-reads no
  40. oom-score-adj no
  41. oom-score-adj-values 0 200 800
  42. appendonly no
  43. appendfilename "appendonly.aof"
  44. appendfsync everysec
  45. no-appendfsync-on-rewrite no
  46. auto-aof-rewrite-percentage 100
  47. auto-aof-rewrite-min-size 64mb
  48. aof-load-truncated yes
  49. aof-use-rdb-preamble yes
  50. lua-time-limit 5000
  51. slowlog-log-slower-than 10000
  52. slowlog-max-len 128
  53. latency-monitor-threshold 0
  54. notify-keyspace-events ""
  55. hash-max-ziplist-entries 512
  56. hash-max-ziplist-value 64
  57. list-max-ziplist-size -2
  58. list-compress-depth 0
  59. set-max-intset-entries 512
  60. zset-max-ziplist-entries 128
  61. zset-max-ziplist-value 64
  62. hll-sparse-max-bytes 3000
  63. stream-node-max-bytes 4096
  64. stream-node-max-entries 100
  65. activerehashing yes
  66. client-output-buffer-limit normal 0 0 0
  67. client-output-buffer-limit replica 256mb 64mb 60
  68. client-output-buffer-limit pubsub 32mb 8mb 60
  69. hz 10
  70. dynamic-hz yes
  71. aof-rewrite-incremental-fsync yes
  72. rdb-save-incremental-fsync yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement