I am using the Windows version of memcached 1.2.5 in production without issue. I am attempting to upgrade to 1.4.4 (from http://labs.northscale.com/memcached-packages/) to take advantage of the configurable item size limitation. Whenever I try to store an item > 1MB I get the following error:
Assertion failed: it->nbytes < (1024 * 1024), file items.c, line 284 The line of code in items.c is: assert(it->nbytes < (1024 * 1024)); /* 1MB max size */ So how could this possibly work? I can remove that assertion, but was curious to see if anyone knew why it was there considering the item limit *should* now be configurable. Thanks!
