From d03457ab5c14e9aa6ec7c23c4f954168a975bcc8 Mon Sep 17 00:00:00 2001 From: Dave Forgac Date: Sat, 11 Oct 2014 00:20:07 -0400 Subject: updating comment to account for -I option --- memcache.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/memcache.py b/memcache.py index 30120c9..80770ed 100644 --- a/memcache.py +++ b/memcache.py @@ -96,9 +96,10 @@ __copyright__ = "Copyright (C) 2003 Danga Interactive" __license__ = "Python Software Foundation License" SERVER_MAX_KEY_LENGTH = 250 -# Storing values larger than 1MB requires recompiling memcached. If -# you do, this value can be changed by doing -# "memcache.SERVER_MAX_VALUE_LENGTH = N" after importing this module. +# Storing values larger than 1MB requires starting memcached with -I for +# memcached >= 1.4.2 or recompiling for < 1.4.2. If you do, this value can be +# changed by doing "memcache.SERVER_MAX_VALUE_LENGTH = N" after importing this +# module. SERVER_MAX_VALUE_LENGTH = 1024 * 1024 -- cgit v1.2.1