Hi, I'm using memcache 1.4.4 and this python client to communitcate with it: http://pypi.python.org/pypi/python3-memcached Now yesterday i ran into the 1MB limit because I'm storing quite big results from DB-Queries. As soon as I use compression it works fine but I still want to raise the limit a little bit to make sure I don't have any problems in the future.
This is how I start the service: C:\Program Files (x86)\memcache\memcached.exe" -d runservice -m 2048 -I 5m >From what I understand this should give me a limit of 5MB and it should use 2GiB of my RAM as a whole. I also hat to do the following in my code: memcache.SERVER_MAX_VALUE_LENGTH = 1024*5 Unfortunately it seems that I still can't add big values to memcahe. I get no error or any message, eventhough I have enabled debuging. It simply does not add anything. Any suggestions ? I used this installer for windows: http://blog.couchbase.com/memcached-144-windows-32-bit-binary-now-available Help would be much appreciated :-) -- --- You received this message because you are subscribed to the Google Groups "memcached" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
