Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

15 rindas
357 B

  1. dbfilename redis_cache.rdb
  2. dir {{ pid_path }}
  3. pidfile {{ pid_path }}/redis_cache.pid
  4. bind 127.0.0.1
  5. port {{ port }}
  6. maxmemory {{ maxmemory }}mb
  7. maxmemory-policy allkeys-lru
  8. appendonly no
  9. {% if redis_version and redis_version >= 2.2 %}
  10. save ""
  11. {% endif %}
  12. {% if redis_version and redis_version >= 6.0 %}
  13. aclfile {{ config_path }}/redis_cache.acl
  14. {% endif %}