Tuesday, October 9, 2018

Memcached vs. Redis?


Memcached vs. Redis?

Redis is more powerful, more popular, and better supported than Memcached.
For anything new, use Redis.

Memcached: When you restart Memcached your data is gone.
Redis: You can turn off persistence and it will happily lose your data on restart too. If you want your cache to survive restarts it lets you do that as well. In fact, that's the default.

Memcached: limited to string
Redis: many Data Types

No comments:

Post a Comment

Most Recent Posts