I've manually ran memcached with -vvv to see what actually happens because with older version my code worked good and it does not work now (not hitting cache never). So I discovered the problem: By default, in my class, I setup the expire time in 20736000 which is 5 days in seconds. With that value, I always see -nuked by expire in output despite it is recently created!
I discovered that lowering the value, it works indeed, for example 9000 seconds and it then works: > FOUND KEY AccountData:3 >28 sending key AccountData:3 >28 END So does it lowered its limits in expire option (or indide memcached code?) Any hint to have greater expire times? Thank you
