21
You Don't Need a Dedicated Cache Service - PostgreSQL as a Cache
(martinheinz.dev)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
The "why" is missing an important one: put less load on your primary DB for frequent gets. If you can replace your cache with your primary DB then ya you probably don't need a cache. Just fix indexing, data normalization, and/or access patterns.