Re: After deleting the key successfully again key existing after some time.

2016-07-25 Thread dormando
Your app is putting the key back. make it stop doing that? On Mon, 25 Jul 2016, Babu G wrote: > Hi, > >    After deleting the key successfully again key existing after some time. is > there any way to delete key permanently. > >  syntax : delete >

After deleting the key successfully again key existing after some time.

2016-07-25 Thread Babu G
Hi, After deleting the key successfully again key existing after some time. is there any way to delete key permanently. syntax : delete builder_cache_store:views//aa/dd/kk-dd/a=p_7182_451006ec2f0328a2287aa18878086dff41a40fa0 response: DELETED But after some time when I try to get

Re: Fork best practise

2016-07-25 Thread 'Jay Grizzard' via memcached
You can’t really usefully duplicate the open connection fd this way — if you think about it, when you duplicate a network fd, the new fd has the same endpoints (srcip:srcport dstip:dstport) as the original, meaning there would be no way for the local system to know which of your multiple processes

Fork best practise

2016-07-25 Thread jounijl
A traditional web-server application forks a new process for every request with 'fork' (man -s2 fork). Question how to use memcached_pool with processes. With processes, the memory is isolated between the processes. After fork, the whole memcached_pool is doubled to a new process. Freeing