Changes between Version 1 and Version 2 of MaximumObjectSize

Show
Ignore:
Timestamp:
11/17/08 13:31:34 (22 months ago)
Author:
duo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MaximumObjectSize

    v1 v2  
    22 
    33The default maximum object size is 1MB. If you want to increase this size, you have to re-compile memcached. You can modify the value of the POWER_BLOCK  within the slabs.c file within the source.  
     4 
     5== Python memcache == 
     6{{{ 
     7#!python 
     8import memcache 
     9memcache.SERVER_MAX_VALUE_LENGTH = 20971520 
     10}}}