| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Reverting back to re.match for key checking. | Sean Reifschneider | 2013-06-02 | 1 | -0/+8 |
| | | |||||
| * | For 1.51 release.release-1.51 | Sean Reifschneider | 2013-05-06 | 1 | -0/+6 |
| | | |||||
| * | Fixing reference to README in setup.pyrelease-1.50 | Sean Reifschneider | 2013-05-06 | 1 | -1/+1 |
| | | |||||
| * | Changing check_key to check_keys.release-1.49 | Sean Reifschneider | 2013-05-06 | 1 | -1/+5 |
| | | |||||
| * | check_key disabling and performance improvements. | Sean Reifschneider | 2013-05-04 | 1 | -0/+8 |
| | | | | | | | | | | | * Client() now takes a "check_key" option, which defaults to True. If False, it disables the checking of keys to ensure they have acceptable size and are composed of non-control characters. Suggested by Ben Hoyt. * Converting control character checking of keys based on performance testing of alternatives by Ben Hoyt. | ||||
| * | Converting unicode test from using u''. | Sean Reifschneider | 2013-04-17 | 1 | -0/+2 |
| | | |||||
| * | Updating ChangingLog. | Sean Reifschneider | 2013-04-16 | 1 | -0/+2 |
| | | |||||
| * | Set after server dies raises AttributeError. | Sean Reifschneider | 2013-03-30 | 1 | -0/+3 |
| | | |||||
| * | incr/decr return None on server connection fail. | Sean Reifschneider | 2013-03-29 | 1 | -0/+3 |
| | | |||||
| * | Adding patch for IPv6 connection string. | Sean Reifschneider | 2013-03-28 | 1 | -0/+3 |
| | | |||||
| * | Changing location to github. | Sean Reifschneider | 2013-03-27 | 1 | -0/+4 |
| | | |||||
| * | * Bug #974632: _ConnectionDeadError sometimes was escaping the get/set | Sean Reifschneider | 2012-04-11 | 1 | -0/+8 |
| | | | | | | | | | | code. This should return to readline() not raising an exception, except in the case that it's called from the get/set(). Report from Gary Poster, proposed patch by Brad Crittenden. Misc fixes by Brad Crittenden: fixing a docstring, if "port" is set to any false-like value it will default to 11211. | ||||
| * | For release. | Sean Reifschneider | 2011-11-29 | 1 | -0/+2 |
| | | |||||
| * | Bug #887765: Interrupted connection to memcache server can cause | Sean Reifschneider | 2011-11-29 | 1 | -0/+7 |
| | | | | | | | | | inconsistencies. Added "flush_on_reconnect" (defaults to off) to Client() which will cause a client that has lost connection to a server and then reconnects to flush the cache on the reconnect so that it doesn't get old values from that server. Patch by Daniel Benamy. | ||||
| * | Ready for a new release. | Sean Reifschneider | 2011-11-27 | 1 | -0/+2 |
| | | |||||
| * | Adding attribution of last change. | Sean Reifschneider | 2011-11-27 | 1 | -1/+1 |
| | | |||||
| * | Bug #745633: Values of maximum size are not stored | Sean Reifschneider | 2011-11-27 | 1 | -0/+7 |
| | | | | | | | | | API inconsistency, max value length was tested for <= while max KEY length was <. So I picked that keys and values *LONGER* than the specified max value are what is used, and added documentation and tests to that effect. The test for max value tested that length plus 4, so I've changed that to be that value plus 1. | ||||
| * | Changelog for last commit. | Sean Reifschneider | 2011-11-27 | 1 | -0/+7 |
| | | |||||
| * | * Bug #713451: server.expect("END") needs to be in a finally block | Sean Reifschneider | 2011-11-27 | 1 | -0/+4 |
| | | | | | | Expect an "END" when the _recv_value() raises an exception. Patch by Jay Farrimond. | ||||
| * | Reverting patch that allows spaces in key. | Sean Reifschneider | 2011-11-27 | 1 | -3/+0 |
| | | |||||
| * | Bug: #741090: cas cache can grow unbounded. Default now is that the | Sean Reifschneider | 2011-11-27 | 1 | -0/+6 |
| | | | | | | | | cache is not used, unless the "Client()" object is created with "cache_cas=True". In that case, you need to have your own cas clearing code, a simple one would be to use Client().reset_cas() to completely clear the cas_ids cache. Problem pointed out by Shaun Cutts. | ||||
| * | Bug: #794456: Spaces in memcache keynames | Sean Reifschneider | 2011-11-27 | 1 | -0/+3 |
| | | | | | Now allow spaces in keys. Proposed by cpaetzel. | ||||
| * | Bug #728359: Make python-memcache work on memcache restarts. | Sean Reifschneider | 2011-11-27 | 1 | -0/+4 |
| | | | | | | Patch by Tarek Ziade', reviewed and further patches submitted by Hugo Beauze'e-Luysse and Neganov Alexandr. | ||||
| * | * Bug #798342: If memcached server sends unknown flag in response for | Sean Reifschneider | 2011-11-27 | 1 | -0/+5 |
| | | | | | | | "get", results in: "UnboundLocalError: local variable 'val' referenced before assignment" Now returns "None" instead. Patch by Sharoon Thomas | ||||
| * | Changelog for new release. | Sean Reifschneider | 2010-12-20 | 1 | -0/+2 |
| | | |||||
| * | Changelog entry for last commit. | Sean Reifschneider | 2010-12-16 | 1 | -0/+3 |
| | | |||||
| * | Adding marker for 1.46 release. | Sean Reifschneider | 2010-12-16 | 1 | -0/+2 |
| | | |||||
| * | Delete result code checking. | Sean Reifschneider | 2010-12-15 | 1 | -0/+5 |
| | | |||||
| * | When using set_multi and one value is too big, traceback | Sean Reifschneider | 2010-12-15 | 1 | -0/+4 |
| | | |||||
| * | Bug #529855: Server host can now be bare host without ":<port>". | Sean Reifschneider | 2010-12-15 | 1 | -0/+3 |
| | | |||||
| * | readline() returns '' instead of None on dead server. | Sean Reifschneider | 2010-12-15 | 1 | -0/+4 |
| | | |||||
| * | Typo fix "compession" -> "compRession". | Sean Reifschneider | 2010-12-15 | 1 | -0/+2 |
| | | |||||
| * | Fixing Bug #509712: "TypeError: 'NoneType' object is unsubscriptable" | Sean Reifschneider | 2010-12-15 | 1 | -0/+9 |
| | | | | | | Also fixed some other similar code to not have issues with that. Also added changelog entries for the last two patches. | ||||
| * | Changing licensing and authorship. | Sean Reifschneider | 2010-02-08 | 1 | -0/+5 |
| | | |||||
| * | For 1.45 release. | Sean Reifschneider | 2009-11-28 | 1 | -0/+4 |
| | | |||||
| * | Adding additional name for the garbage collecting fix. | Sean Reifschneider | 2009-11-28 | 1 | -1/+1 |
| | | |||||
| * | * Per-connection max server key length. Patch by Nicolas Delaby | Sean Reifschneider | 2009-11-27 | 1 | -0/+2 |
| | | |||||
| * | Reverting the change for different serializers until I hear back from | Sean Reifschneider | 2009-11-27 | 1 | -5/+0 |
| | | | | | author. | ||||
| * | * Adding support for multiple deserialization formats including PHP and | Sean Reifschneider | 2009-11-27 | 1 | -0/+5 |
| | | | | | | | JSON. Patch by Gavin M. Roy. PHP requires http://pypi.python.org/pypi/phpserialize | ||||
| * | * Patches to make memcached more garbage-collectable. Removes | Sean Reifschneider | 2009-11-27 | 1 | -3/+9 |
| | | | | | | "debugfunc" argument from _Host objects and changed to "debug" boolean. Patch by John McFarlane. | ||||
| * | * Rejecting keys that have spaces in them. Patch by Etienne Posthumus. | Sean Reifschneider | 2009-11-27 | 1 | -0/+2 |
| | | |||||
| * | * Fixing exception raising syntax. Patch by Samuel Stauffer. | Sean Reifschneider | 2009-11-27 | 1 | -0/+8 |
| | | | | | | | | | * Optimizations in read code. Patch by Samuel Stauffer. * Changing classes to be newstyle. Patch by Samuel Stauffer. * Changed "has_key" to "in". Patch by Samuel Stauffer. | ||||
| * | * incr/decr were raising ValueError if the key did not exist, the | Sean Reifschneider | 2009-11-27 | 1 | -0/+8 |
| | | | | | | | | | | docstring said it returned none. Patch by Chihiro Sakatoku. * Included cmemcache_hash, by permission of Ludvig Ericson. To use, do "memcached.cmemcache_activate()". * Adding cas method, submitted by Ben Gutierrez. | ||||
| * | Fixing set example in docstring. | Sean Reifschneider | 2009-06-05 | 1 | -0/+3 |
| | | |||||
| * | For 1.44 release. | Sean Reifschneider | 2009-04-02 | 1 | -0/+2 |
| | | |||||
| * | * Adding get_slabs() function to get stats. (Patch provided | Sean Reifschneider | 2009-04-02 | 1 | -0/+3 |
| | | | | | by Nick Verbeck) | ||||
| * | Updating the changelog. | Sean Reifschneider | 2009-04-02 | 1 | -0/+17 |
| | | |||||
| * | Providing better error messages (patch provided by Johan Euphrosine). | Sean Reifschneider | 2009-04-02 | 1 | -0/+2 |
| | | |||||
| * | * eliott reported a bug in the 1.42 related to the socket timeout code | Sean Reifschneider | 2008-06-01 | 1 | -0/+7 |
| | | | | | causing a traceback due to the timeout value not being set. | ||||
| * | * Patch from Peter Wilkinson to support using unix domain sockets. | Sean Reifschneider | 2008-05-31 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | He reports that tests succeed with with memcached daemons running, the normal and a domain socket started via "memcached -s memcached.socket". I massaged it quite a bit. To use domain sockets, use a connect string of "unix:/path/to/socket" Note however that if you are using a host name of "unix", it will now detect "unix:11211" as being a domain socket with the name "11211". In this case, please use "inet:unix:11211". Because of this, it is now preferred to use a connect string prefix of "inet:" or "unix:". | ||||
