libeatmydata - disable fsync and SAVE

23 points by bakaq


snej

SQLite has a command to enable this — iirc it's pragma synchronous(off)

sigio

Use this in various disk-io heavy tasks where speed is more important than integrity... saves some time in various batch-jobs. (And a 'sync' wil run afterwards to make sure everything ends up on permanent storage)

donio

I used to use this with Notmuch before I had an SSD and the Xapian db was on sinning disk. It made a big difference in performance and wih regular backups the risks were well understood and acceptable.

bakaq

Not sure if this needs the satire flag, because it looks like something that could be useful in some circumstances. I can't think of any though.