summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug: #794456: Spaces in memcache keynamesSean Reifschneider2011-11-272-1/+4
| | | | Now allow spaces in keys. Proposed by cpaetzel.
* Bug #728359: Make python-memcache work on memcache restarts.Sean Reifschneider2011-11-272-46/+97
| | | | | Patch by Tarek Ziade', reviewed and further patches submitted by Hugo Beauze'e-Luysse and Neganov Alexandr.
* Adding Makefile and fixing tests.Sean Reifschneider2011-11-272-0/+9
|
* * Bug #798342: If memcached server sends unknown flag in response forSean Reifschneider2011-11-272-1/+6
| | | | | | "get", results in: "UnboundLocalError: local variable 'val' referenced before assignment" Now returns "None" instead. Patch by Sharoon Thomas
* Changelog for new release.Sean Reifschneider2010-12-201-0/+2
|
* Changelog entry for last commit.Sean Reifschneider2010-12-161-0/+3
|
* Bug #680359: useoldserverhashfunction is brokenSean Reifschneider2010-12-161-0/+1
|
* Adding marker for 1.46 release.Sean Reifschneider2010-12-161-0/+2
|
* Delete result code checking.Sean Reifschneider2010-12-152-4/+15
|
* When using set_multi and one value is too big, tracebackSean Reifschneider2010-12-152-6/+14
|
* Bug #529855: Server host can now be bare host without ":<port>".Sean Reifschneider2010-12-152-1/+4
|
* readline() returns '' instead of None on dead server.Sean Reifschneider2010-12-152-1/+5
|
* Typo fix "compession" -> "compRession".Sean Reifschneider2010-12-152-1/+3
|
* Fixing Bug #509712: "TypeError: 'NoneType' object is unsubscriptable"Sean Reifschneider2010-12-152-5/+12
| | | | | Also fixed some other similar code to not have issues with that. Also added changelog entries for the last two patches.
* Bug #633553: Add stat arguments support.Sean Reifschneider2010-12-151-2/+8
|
* Bug #628339: Read from server sometimes failsSean Reifschneider2010-12-151-0/+2
|
* Changing licensing and authorship.Sean Reifschneider2010-02-084-9/+17
|
* For 1.45 release.Sean Reifschneider2009-11-281-0/+4
|
* Release script is adding document file.Sean Reifschneider2009-11-282-1/+4
|
* Running tests and fixing issues found so far.Sean Reifschneider2009-11-281-44/+53
| | | | Adding overall test status message.
* Removing the pyc file from version control.Sean Reifschneider2009-11-281-0/+0
|
* Adding additional name for the garbage collecting fix.Sean Reifschneider2009-11-281-1/+1
|
* * Per-connection max server key length. Patch by Nicolas DelabySean Reifschneider2009-11-272-35/+42
|
* Reverting the change for different serializers until I hear back fromSean Reifschneider2009-11-272-64/+4
| | | | author.
* * Adding support for multiple deserialization formats including PHP andSean Reifschneider2009-11-272-4/+64
| | | | | | JSON. Patch by Gavin M. Roy. PHP requires http://pypi.python.org/pypi/phpserialize
* * Patches to make memcached more garbage-collectable. RemovesSean Reifschneider2009-11-272-125/+27
| | | | | "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 Reifschneider2009-11-272-2/+4
|
* * Fixing exception raising syntax. Patch by Samuel Stauffer.Sean Reifschneider2009-11-272-38/+44
| | | | | | | | * 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, theSean Reifschneider2009-11-273-14/+204
| | | | | | | | | 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 Reifschneider2009-06-053-1/+4
|
* For 1.44 release.Sean Reifschneider2009-04-021-0/+2
|
* * Adding get_slabs() function to get stats. (Patch providedSean Reifschneider2009-04-022-0/+27
| | | | by Nick Verbeck)
* Updating the changelog.Sean Reifschneider2009-04-021-0/+17
|
* Providing better error messages (patch provided by Johan Euphrosine).Sean Reifschneider2009-04-022-4/+17
|
* Changing a typo of dead_until.Sean Reifschneider2009-04-021-1/+1
|
* Fixing the representation of domain sockets.Sean Reifschneider2009-04-021-1/+4
|
* Fixing arguments passed to the _Error if invalid read length.Sean Reifschneider2009-04-021-1/+1
|
* Moving length check after the compression.Sean Reifschneider2009-04-021-4/+7
|
* Detecting when the pickler needs a positional argument.Sean Reifschneider2009-04-021-2/+13
|
* Allowing spaces in the key.Sean Reifschneider2009-04-021-1/+1
|
* * eliott reported a bug in the 1.42 related to the socket timeout codeSean Reifschneider2008-06-013-0/+8
| | | | causing a traceback due to the timeout value not being set.
* * Patch from Peter Wilkinson to support using unix domain sockets.Sean Reifschneider2008-05-313-132/+165
| | | | | | | | | | | | | | 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:".
* * Patches from Steve Schwarz for set_multi() to return the full set ofSean Reifschneider2008-05-312-4/+30
| | | | | | | keys if all servers are down. Previously would not report any keys. * Fix from Steve Schwarz delete_multi() argument "seconds" not being correctly handled. Changed it to "time" to match all other calls.
* * Patch from Jehiah Czebotar which does: Changing the calls toSean Reifschneider2008-05-312-9/+32
| | | | | mark_dead() to make them dereference tuples, reducing timeout on sockets to 3 seconds, settable via setting Host._SOCKET_TIMEOUT.
* Patch from Andrey Petrov to add the "append" and "replace" commands.Sean Reifschneider2008-04-292-0/+24
|
* Patch from Jehiah Czebotar to catch an additional server disconnectSean Reifschneider2008-04-298-0/+1274
situation.