redis.conf 249 B

1234567891011121314
  1. # Enable RDB persistence
  2. save 900 1
  3. save 300 10
  4. save 60 10000
  5. # Specify where to save the RDB file
  6. dir /data
  7. dbfilename dump.rdb
  8. # Enable AOF persistence
  9. appendonly yes
  10. # Specify where to save the AOF file (optional)
  11. appendfilename appendonly.aof