I\'ve been using PostgreSQL for the longest time. All of my data lives inside Postgres. I\'ve recently looked into redis and it has a lot of powerful features that would otherwi
Redis is persistent if configured to be so, both through snapshots and a kind of WAL called AOF. Loads of people use it as a primary datastore. https://redis.io/topics/persistence
If one is referring to the greater world of Redis compatible (resp protocol) datastores, many are not limited to in-memory storage: https://keydb.dev/ http://ssdb.io/ and many more...