Reputation: 76
I haven't coded/tested this yet, but assume that you have 2 memcached instances of very small size, e.g. 1Mb each.
What happens when each cache is full and you try to "put" another object into cache? Assume all objects in cache have infinite expiry. Any ideas?
Upvotes: 1
Views: 466
Reputation: 910
When the table is full, subsequent inserts cause older data to be purged in least recently used (LRU) order
Upvotes: 5