Reputation: 1015
I am using PHP memcached for storing records. But it is not storing more than 2000 records in the cache.
I am interesting in finding:
Upvotes: 2
Views: 4814
Reputation: 21368
Memcached size is set by your host. You can generally have it increased, but it also usually costs to do so.
If you're developing on a local machine, according to memcached docs, you can set the limit with memcached -m [size]
.
I found a perl utility here that seems to dump out the exact information that you're looking for.
Upvotes: 1
Reputation: 401002
Maximum limit of the cache :
Size of the data in cache, number of items in cache : there are PHP functions which can help with that ; depending on the extension you are using to connect to memcached, see :
Maximum number of items you can store in memcached :
Upvotes: 5