Hacker News new | ask | show | jobs
by StavrosK 3971 days ago
You just made me wonder whether disabling fsync for postgres would make your tests behave non-identically to a database that does fsync, and how much faster they would be. Interesting question...
2 comments

You can get most of the benefit you would get from disabling fsync by just disabling synchronous_commit. Disabling synchronous_commit means that fsyncs are still doen but we do not wait for them to complete.
I'm pretty sure the behavior would be identical except for durability.
I think so too. Okay, fsync, off you go for dev.