Comment on Slow database test fallacyComments−brasetvik12yFor local testing on Postgres where you don't care about database reliability, you can also speed things up a lot by setting `fsync = off` and `synchronous_commit = off`.(Never do that on a production database, of course!)−joevandyk12yYou can also have postgres running off /dev/shm.
Comments
For local testing on Postgres where you don't care about database reliability, you can also speed things up a lot by setting `fsync = off` and `synchronous_commit = off`.
(Never do that on a production database, of course!)
You can also have postgres running off /dev/shm.