Check Size of Object in memcached

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import memcache

try:
    from cStringIO import StringIO
except ImportError:
    from StringIO import StringIO

try:
    import cPickle as pickle
except ImportError:
    import pickle

def data_size(data):
    """Returns the size in bytes of the data passed in."""
    fp = StringIO()
    pickler = pickle.Pickler(fp, protocol=0)
    pickler.dump(data)
    val = fp.getvalue()
    return len(val)

def data_too_large(data):
    """Returns True if the data passed in is too large for memcached."""
    return data_size(data) >= memcache.SERVER_MAX_VALUE_LENGTH

More like this

  1. Non-pickling locmem (in-process memory) cache backend by akaihola 2 years, 2 months ago
  2. JSON instead of pickle for memcached by diverman 1 year, 4 months ago
  3. PositionField by jpwatts 4 years, 10 months ago
  4. Improved Pickled Object Field by taavi223 3 years, 9 months ago
  5. Functional Filters by waterson 5 years, 8 months ago

Comments

(Forgotten your password?)