Tagged Questions

6
votes
4answers
3k views

Memcache maximum key expiration time

What's memcached's maximum key expiration time? If I don't provide an expiration time and the cache gets full, what happens?
3
votes
2answers
223 views

Does setting a memcached key that already exists refresh the expiration time?

Let's say I have the following code: Memcached->set('key', 'value', 60); (expire in one minute) while (1) { sleep 1 second; data = Memcached->get('key'); // update data ...
2
votes
2answers
82 views

Memcache global expiration change

Is it possible to change all the key/value pairs in memcache instances with a command line? Say, i have 10 memcache servers and they have key value pairs, and they all have the objects with 30 days ...
1
vote
1answer
224 views

How does the lazy expiration mechanism in memcached operate?

(First of all, my English is not very good, please) As we know, memcached provides lazy expiration, and "replaces" LRU data in its slabs, however I'm not very clear how it does this. For example, if ...
0
votes
1answer
367 views

is the expiration time updated in memcached after an increment?

When you put a value in memcached, you can set an expiration time. However, when you increment a value you can not (at least not from PHP) set a new expiration time. My question: Is the expiration ...
0
votes
1answer
402 views

Replacing an item in memcached without changing the expiration time

I have several items on memcached that should expire 24h after the creation time. I need to update those items, while keeping the expiration time unchanged. How can I do this? Apparently the replace ...