what does memory allocation memcached do ?

2009-06-18 Thread romeo
what does memory allocation memcached do ? what does memory allocation memcached do ? http://prabhuearnings.blogspot.com http://prabhuearnings.blogspot.com

How memcached cache to memory server

2009-06-18 Thread Nguyễn
I'm using memcached on my web site, and I have a question about how memcached cache to memory server if I'm using two or more server to cache it? Memcached function had a function addserver() I wonder how does it cache to the next server, I guest that when memcached using full of memory in the fir

Re: what does memory allocation memcached do ?

2009-06-18 Thread Dustin
On Jun 17, 11:00 am, romeo wrote: > what does memory allocation memcached do  ? It's not clear what you're trying to ask. Can you rephrase your question?

Re: How memcached cache to memory server

2009-06-18 Thread Dustin
On Jun 18, 12:07 am, Nguyễn wrote: > I'm using memcached on my web site, and I have a question about how > memcached cache to memory server if I'm using two or more server to > cache it? > Memcached function had a function addserver() I wonder how does it > cache to the next server, I guest that

Re: what does memory allocation memcached do ?

2009-06-18 Thread Raymond Steigerwalt
Maybe he is asking HOW memcached allocates memory? I'm no expert but from what I understand memcached will allocate memory in "slabs" of a fixed length. If the data to be saved is smaller then the slab, the entire slab will be used. Once a slab is no longer used, memcached will still hold on to th

Re: How memcached cache to memory server

2009-06-18 Thread Gacon
Thank you very much! It's help me not to waste my time and of course I will read FAQ again. Thank you! On Jun 18, 2:44 pm, Dustin wrote: > On Jun 18, 12:07 am, Nguyễn wrote: > > > I'm using memcached on my web site, and I have a question about how > > memcached cache to memory server if I'm usi

Re: what does memory allocation memcached do ?

2009-06-18 Thread Martin MC Brown
On 18 Jun 2009, at 13:09, Raymond Steigerwalt wrote: Maybe he is asking HOW memcached allocates memory? I'm no expert but from what I understand memcached will allocate memory in "slabs" of a fixed length. If the data to be saved is smaller then the slab, the entire slab will be used. Onc