Re: Memcache `delete_misses` are very high compared to `delete_hits` while `evictions` are 0

2016-07-14 Thread Utkarsh Awasthi
To be more specific Memcached is being used for caching html pages, If page is not found in memcached, it's been generated and saved against a key. Also no explicit `delete` command is issued. On Wednesday, July 13, 2016 at 5:59:41 PM UTC+5:30, Utkarsh Awasthi wrote: > > Following are the stats

Re: Inserting large values into memcached

2016-07-14 Thread Sonia
Everything seems in order, but cant seem to find a reason for this odd behaviour. On Wednesday, July 13, 2016 at 11:22:07 PM UTC-5, Dormando wrote: > > I'm not sure why. you can validate the settings via the `stats settings` > command. > > On Wed, 13 Jul 2016, Sonia wrote: > > > I tried insert

Re: Inserting large values into memcached

2016-07-14 Thread dormando
Hey, In order to understand I'd have to see the details firsthand at this point: Output of `stats` and `stats settings` commands, as well as any example code you can share. On Thu, 14 Jul 2016, Sonia wrote: > Everything seems in order, but cant seem to find a reason for this odd > behaviour. >

Re: Memcache `delete_misses` are very high compared to `delete_hits` while `evictions` are 0

2016-07-14 Thread dormando
Hey, the delete_misses and delete_hits counters only tick when a delete command is run. you'll need to temporarily enable either logging via your app or via memcached to see where those delete commands are coming from. On Thu, 14 Jul 2016, Utkarsh Awasthi wrote: > To be more specific Memcached i