You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After every minor PHP update (and restart) I experience my memcached to start climbing in memory consumption fast. This eventually causes Memcached to stop working at all. A restart of memcached solves the problem, but this not ideal because my PHP sessions are in Memcached.
Does anyone else also have experienced this problem? Is there any way to debug what it could cause?
The text was updated successfully, but these errors were encountered:
This is completely normal. Your memcached is filling up with data as you begin using it. This is how it works! Memcached does not proactively recover memory; rather, it fills until it's full and then begins evicting records that are either a) past their TTL or b) Least Recently Used within their respective object-size-buckets.
Maybe I was not clear enough. The server RAM is climbing to 100% caused by memcached and at a sudden point memcached completely stops working, no evictions are taking place.
Memcached v3.1.5
PHP 7.4.14
After every minor PHP update (and restart) I experience my memcached to start climbing in memory consumption fast. This eventually causes Memcached to stop working at all. A restart of memcached solves the problem, but this not ideal because my PHP sessions are in Memcached.
Does anyone else also have experienced this problem? Is there any way to debug what it could cause?
The text was updated successfully, but these errors were encountered: