|
|
|
|
|
by ctc24
833 days ago
|
|
Why wouldn't you simply use SQLite (or some other in-memory flavor of SQL) instead of hacking the main Postgres db and adding load to the primary instance? The author makes a valid point that there's something nice about using familiar tooling (including the SQL interface) for a cache, but it feels like there are better solutions. |
|
My issue with running PostgreSQL as cache would be its thread per connection model and downsides of MVCC for cache.