Re: CLR Stored Procedure for Remove cache objects

2009-10-02 Thread Kevin Amerson
You can also go with NHibernate and use NHibernate.Linq along with the NHibernate's memcached client that basically hooks in through configuration settings. On Fri, Oct 2, 2009 at 11:59 AM, Dan Wierenga dwiere...@gmail.com wrote: -Original Message- From: memcached@googlegroups.com

Re: Measuring Memory Usage

2009-04-20 Thread Kevin Amerson
I was thinking that as well, but the evictions above are 0 - but the bytes used / available seem to indicate items are being evicted; Are evictions incremented if items are expiring? On Mon, Apr 20, 2009 at 10:43 AM, Olga Khenkin o...@metacafe.com wrote: Hi, When memcached uses all allocated

Re: Considering memcached for a .NET Assessment Application

2009-02-26 Thread Kevin Amerson
Hey Jeremie, We experienced problems with the windows versions so we opted to use the latest release for linux and just did a yum install memcached. It is very easy and works right away. We didn't spend much time on the windows releases because they all have disclaimers attached to them. The

Re: Load-balanced web-servers + memcached

2008-10-30 Thread Kevin Amerson
The client should use a hashing algorithm on the key, and if both instances of memcached are in the available pool of servers, then once hashed, it will decide on the server and then always go to that server, unless of course it is taken out of the pool of available servers. You can test this out

Re: Load-balanced web-servers + memcached

2008-10-30 Thread Kevin Amerson
Exactly, yes, we use the Enyim client and it has the hashing built in. You could sub it out if you wanted to, but it works well out of the box ;). On Thu, Oct 30, 2008 at 4:39 PM, Ray Krueger [EMAIL PROTECTED] wrote: I think I get it. So if I'm passing in the array of memcached IPs via a

Re: Memcached for .NET

2008-10-27 Thread Kevin Amerson
We had several problems with the win32 version, most notably though the crashing when we did tests of pulling servers out of the pool and adding new ones. Then we saw a line at the bottom of the web page stating that it was not to be used in a production environment, and dropped it from there.