Do you mean you reach max memory usage for your memcached server ? You may want to increase your maximum memory allocated to memcached:
$ memcached -h (...) -m <num> max memory to use for items in megabytes, default is 64 MB (...) Be careful to not put it too high, as you certainly don't want to swap. It is only memory reserved for items, so it means your memcached daemon needs more memory, and you also need to keep some memory for the system, plus some other services that may run on the same box. 2009/5/14 TopLess <[email protected]>: > > Hello, > > it seems that there is a limitation concerning the Memcached Items > parameter. > On two differents servers, we observer a regular increasing of this > number (up 125.000) then it stays constant even if many news html > pages are generated on the websites. > > How delete this limitation ? > > Thanks
