summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Changing check_key to check_keys.release-1.49Sean Reifschneider2013-05-062-4/+8
|
* check_key disabling and performance improvements.Sean Reifschneider2013-05-042-11/+28
| | | | | | | | | | * 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 Reifschneider2013-04-172-3/+6
|
* Updating ChangingLog.Sean Reifschneider2013-04-162-0/+2
|
* Merge pull request #1 from pombredanne/licenseSean Reifschneider2013-04-161-0/+556
|\ | | | | Adding missing text for PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
| * Adding missing text for PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2pombredanne2013-04-161-0/+556
|/
* Set after server dies raises AttributeError.Sean Reifschneider2013-03-302-2/+5
|
* incr/decr return None on server connection fail.Sean Reifschneider2013-03-292-2/+5
|
* release script does sdist upload now.Sean Reifschneider2013-03-281-0/+3
|
* Adding gitignore file.Sean Reifschneider2013-03-281-0/+1
|
* Adding patch for IPv6 connection string.Sean Reifschneider2013-03-282-0/+17
|
* Changing location to github.Sean Reifschneider2013-03-272-0/+12
|
* * Bug #974632: _ConnectionDeadError sometimes was escaping the get/setSean Reifschneider2012-04-112-14/+32
| | | | | | | | | 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 Reifschneider2011-11-291-0/+2
|
* Bug #887765: Interrupted connection to memcache server can causeSean Reifschneider2011-11-292-7/+33
| | | | | | | | 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 Reifschneider2011-11-271-0/+2
|
* Adding attribution of last change.Sean Reifschneider2011-11-271-1/+1
|
* Bug #745633: Values of maximum size are not storedSean Reifschneider2011-11-272-3/+21
| | | | | | | | 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 Reifschneider2011-11-271-0/+7
|
* Adding commented-out timed delete test.Sean Reifschneider2011-11-271-2/+15
|
* * Bug #713451: server.expect("END") needs to be in a finally blockSean Reifschneider2011-11-272-2/+8
| | | | | Expect an "END" when the _recv_value() raises an exception. Patch by Jay Farrimond.
* Reverting patch that allows spaces in key.Sean Reifschneider2011-11-272-4/+1
|
* Bug: #741090: cas cache can grow unbounded. Default now is that theSean Reifschneider2011-11-272-3/+25
| | | | | | | 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 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
|