Mats
Mats

Reputation: 14817

Memcached - How to prevent an item from being removed

I'm using the beitmemcached client in my application. Is there a way of preventing a cached value from being removed when the cache grows too large? I got some values cached which have to stay in the cache no matter what. Is that possible?

Thanks in advance!

Upvotes: 1

Views: 168

Answers (1)

brianlmoon
brianlmoon

Reputation: 324

No, memcached does not work this way. It is not a data store. Redis and Couchbase are two products that do persistent storage with a memcached (like) interface.

Upvotes: 1

Related Questions