python3-memcached icon indicating copy to clipboard operation
python3-memcached copied to clipboard

Python3 port of the pure python memcache client implementation

Results 4 python3-memcached issues
Sort by recently updated
recently updated
newest added

Example: import memcache m = memcache.Client(["127.0.0.1:11211"]) m.set("foo", "bar") print(m.delete("foo")) print(m.delete("foo")) Output: 1 1 telnet localhost 11211 set foo 0 0 3 data bar STORED delete foo DELETED delete foo NOT_FOUND...

These changes are not functional but visual to catch up to the upstream to ease maintainability. I wasn't planning on maintaining this since the upstream [linsomniac/python-memcached](https://github.com/linsomniac/python-memcached) already has much better...

get_slabs() was throwing an exception since it was trying to split() binary data. It just needed to be converted to ascii first