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

A python memcached client library.

Results 70 python-memcached issues
Sort by recently updated
recently updated
newest added

Currently `delete()` calls `_deletetouch()` with `[b'DELETED', b'NOT_FOUND']`. We would like to have an option to pass lists of `expected` results and customize this behavior, because we don't treat passing a...

When I tried to delete three keys in loop, it only deletes first and the following are not deleted. On the other hand, when I tried to use delete_multi(), it...

I'm getting the following issue on trying to run this command on IPython. I see python-memcached return wrong value after crash. Environment - MacOS - Python 3.7.4 - IPython 7.7.0...

This PR adds the `default` keyword argument to `get()` method, which allows to support a custom default value to retrieve from the cache, if a key is not present on...

I opened a PR that adds optional support for `default` keyword argument in `get()` method: https://github.com/linsomniac/python-memcached/pull/158 This is due to a bug I've found in one of the projects I...

Adding feature to process bytearrays on set/get Adding feature to overwrite _FLAG_* with alternate values Adding round trip test Adding a test to verify the flags are overwritten in object...

… self.server_max_value_length. When it happens, servers are marked as dead and next commands will for some seconds (according to _DEAD_RETRY value)

When set_multi decides that a value is too big to be stored, it still wants a 'STORED' from the server... the server is finally marked as dead. Here is how...

I'm getting the following error on trying to install through **python setup.py install** running install running bdist_egg running egg_info writing python_memcached.egg-info/PKG-INFO writing dependency_links to python_memcached.egg-info/dependency_links.txt writing requirements to python_memcached.egg-info/requires.txt writing...