⬅︎ Back to How much faster is Redis at storing a blob of JSON compared to PostgreSQL?
You can always add an in-memory file system and mount some postgresql tables on that partition if you wanted to test in memory speed of postgresql.Or you could enable delayed_commit, and batch many transactions into a single fsync every 10 seconds.Then the numbers will be closer to Redis.
Comment
You can always add an in-memory file system and mount some postgresql tables on that partition if you wanted to test in memory speed of postgresql.
Or you could enable delayed_commit, and batch many transactions into a single fsync every 10 seconds.
Then the numbers will be closer to Redis.