Hacker News new | ask | show | jobs
by abhishekjha 1012 days ago
You can configure redis to flush to disk on write operations though you lose on performance.
1 comments

That is not comparable to writes completing after they are flushed to disk.
>appendfsync always: fsync every time new commands are appended to the AOF. Very very slow, very safe. Note that the commands are appended to the AOF after a batch of commands from multiple clients or a pipeline are executed, so it means a single write and a single fsync (before sending the replies).

https://redis.io/docs/management/persistence/

It's very slow, but if you really want to wait for fsync before replying, it can do that.

I was unaware they could make that guarantee.

Thanks for the correction.