Re: same key on both memcached servers

2010-07-14 Thread Henrik Schröder
Try switching to a more actively developed client like BeITMemcached or Enyim? http://github.com/henrikschroder/beitmemcached /Henrik On Wed, Jul 14, 2010 at 07:57, Shaulian wrote: > Sorry for the late response. > > I'm using the memcacheddotnet_clientlib-1.1.5. > > On Jun 24, 7:27 pm, Brian

Re: same key on both memcached servers

2010-07-13 Thread Shaulian
Sorry for the late response. I'm using the memcacheddotnet_clientlib-1.1.5. On Jun 24, 7:27 pm, Brian Moon wrote: > Whatmemcachedclient are you using? > > Brian. > http://brian.moonspot.net/ > > On 6/24/10 12:48 AM, Shaulian wrote: > > > Hi, > > Found the Failover option, so i can test i

Re: same key on both memcached servers

2010-06-24 Thread Brian Moon
What memcached client are you using? Brian. http://brian.moonspot.net/ On 6/24/10 12:48 AM, Shaulian wrote: Hi, Found the Failover option, so i can test it. Currently, only one memcached server is online, so there is no failover possible at all, and everything is going alright (The m

Re: same key on both memcached servers

2010-06-24 Thread Shaulian
Hi, Found the Failover option, so i can test it. Currently, only one memcached server is online, so there is no failover possible at all, and everything is going alright (The memcached server is accessible from both AppServ1+2+3). Before testing the failover property (set it to false), I will shu

Re: same key on both memcached servers

2010-06-24 Thread Shaulian
I checked the configuring of the clients, both order and not containing any 'localhost'. I'll check the connection between each server to the other. On Jun 20, 11:34 pm, dormando wrote: > This smells like you're configuring your clients wrong... The client list > must be _exactly the same_ on eve

Re: same key on both memcached servers

2010-06-20 Thread dormando
This smells like you're configuring your clients wrong... The client list must be _exactly the same_ on every app server. Don't reorder them or put "localhost" in there. It's also possible that appserv2 can't reach one of the memcached daemons as well, and is putting keys on the only available ser

Re: same key on both memcached servers

2010-06-20 Thread Brian Moon
Normal, default operation of a memcached client is to failover to the next server when a connection fails. So it is possible to have one key exist on more than one server. However, most clients have an option to turn this feature off. In those cases, a failed connection would lead to the source

same key on both memcached servers

2010-06-20 Thread Shaulian
Relating to Memcached FAQ (http://code.google.com/p/memcached/wiki/ FAQ#How_does_memcached_work?), it is clear that when you use more than on server for memcache, each key exist only one time, and only on one server. We are using 2 servers for memcached and 3 servers for app. Lately we noticed tha