So in PHP we can do $memcache->get(array('a','b','c'));
I wonder what is the limit of keys before things break. Can I pass 1000 keys? 10000 keys?
I tried to find answer, but can’t find anywhere.
Is there someone who have experience in passing large number of keys to do multi-get to memcache?
The Memcached extension supports at least 100,000 keys in a getMulti, given this test:
I tried to bump it up to a million, but I hit my configured PHP memory limit and promptly decided that if doing a getMulti of one hundred thousand items isn’t good enough, you’re probably abusing memcached.