The database.rdb file is been modified frequently. #462
-
LRR Version and OS Bug Details Matching Logs Screenshots |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The .rdb is, as its name implies, the database, so anytime a change occurs to it the .rdb file gets modified/saved. Technically speaking, Redis has options to limit the rate of writes to disk, but I've chosen to maximize them for the Docker containers to avoid potential data loss issues. LANraragi/tools/build/docker/redis.conf Line 218 in 5fb4e11 I suppose you could overwrite the container's config with a custom one through a bind mount to change this parameter to something that saves less often, if it really is an issue. |
Beta Was this translation helpful? Give feedback.
The .rdb is, as its name implies, the database, so anytime a change occurs to it the .rdb file gets modified/saved.
Technically speaking, Redis has options to limit the rate of writes to disk, but I've chosen to maximize them for the Docker containers to avoid potential data loss issues.
(See
LANraragi/tools/build/docker/redis.conf
Line 218 in 5fb4e11
I suppose you could overwrite the container's config with a custom one through a bind mount to change this parameter to something that saves less often, if it really is an issue.