On 13 янв, 19:27, "Steve Chu" <
stv...@gmail.com> wrote:
> Before version 1.1.x, a fixed size buffer is
> used, but now we have removed this limit. We don't think 'malloc' is
> fast enough, so we use a freelist to cache the malloced memory, the
> buffer block which is added to the free list is fixed size indicated
> by '-b'.
>
>
>
> On Wed, Jan 14, 2009 at 12:23 AM, mark <
markki...@gmail.com> wrote:
>
> > hei steve
> > earlier -b was a limit on the size of data that can be stored right?
> > is it different now? can i store any size of data in memcachedb
> > without changing the settings?
> > thanks
>
> > 2008-06-11 Steve Chu <
stv...@gmail.com>
> > * now '-b' option is a tuning way, not a limit. item size that smaller than
> > '-b' value use fast freelist alloc, otherwise, use system 'malloc' instead.