Can Redis write out to a database like PostgreSQL?

前端 未结 2 1526
时光取名叫无心
时光取名叫无心 2021-02-01 18:27

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

2条回答
  •  南方客
    南方客 (楼主)
    2021-02-01 19:03

    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...


提交回复
热议问题