Is Redis just a cache?

后端 未结 7 882
借酒劲吻你
借酒劲吻你 2020-12-04 04:32

I have been reading some Redis docs and trying the tutorial at http://try.redis-db.com/. So far, I can\'t see any difference between Redis and caching technologies like Velo

相关标签:
7条回答
  • 2020-12-04 05:10

    Not just a cache.

    • In memory key-value storage
    • Support multiple datatypes (strings, hashes, lists, sets, sorted sets, bitmaps, and hyperloglogs)
    • It provides an ability to store cache data into physical storage (if needed).
    • Support pub-sub model
    • Redis cache provides replication for high availability (master/slave)
    0 讨论(0)
提交回复
热议问题