| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | For 1.51 release.release-1.51 | Sean Reifschneider | 2013-05-06 | 2 | -1/+7 |
| | | |||||
| * | Merge pull request #7 from saily/master | Sean Reifschneider | 2013-05-06 | 1 | -0/+10 |
| |\ | | | | | Add a MANIFEST.in file to include *.rst, *.md and *.txt files into sdist package | ||||
| | * | Add a MANIFEST.in file to include *.rst, *.txt and *.md files into sdist ↵ | Daniel Widerin | 2013-05-06 | 1 | -0/+10 |
| |/ | | | | packages. | ||||
| * | Making cleanup "rm" do "-rf". | Sean Reifschneider | 2013-05-06 | 1 | -1/+1 |
| | | |||||
| * | Fixing reference to README in setup.pyrelease-1.50 | Sean Reifschneider | 2013-05-06 | 2 | -2/+2 |
| | | |||||
| * | Changing check_key to check_keys.release-1.49 | Sean Reifschneider | 2013-05-06 | 2 | -4/+8 |
| | | |||||
| * | check_key disabling and performance improvements. | Sean Reifschneider | 2013-05-04 | 2 | -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 Reifschneider | 2013-04-17 | 2 | -3/+6 |
| | | |||||
| * | Updating ChangingLog. | Sean Reifschneider | 2013-04-16 | 2 | -0/+2 |
| | | |||||
| * | Merge pull request #1 from pombredanne/license | Sean Reifschneider | 2013-04-16 | 1 | -0/+556 |
| |\ | | | | | Adding missing text for PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 | ||||
| | * | Adding missing text for PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 | pombredanne | 2013-04-16 | 1 | -0/+556 |
| |/ | |||||
| * | Set after server dies raises AttributeError. | Sean Reifschneider | 2013-03-30 | 2 | -2/+5 |
| | | |||||
| * | incr/decr return None on server connection fail. | Sean Reifschneider | 2013-03-29 | 2 | -2/+5 |
| | | |||||
| * | release script does sdist upload now. | Sean Reifschneider | 2013-03-28 | 1 | -0/+3 |
| | | |||||
| * | Adding gitignore file. | Sean Reifschneider | 2013-03-28 | 1 | -0/+1 |
| | | |||||
| * | Adding patch for IPv6 connection string. | Sean Reifschneider | 2013-03-28 | 2 | -0/+17 |
| | | |||||
| * | Changing location to github. | Sean Reifschneider | 2013-03-27 | 2 | -0/+12 |
| | | |||||
| * | * Bug #974632: _ConnectionDeadError sometimes was escaping the get/set | Sean Reifschneider | 2012-04-11 | 2 | -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 Reifschneider | 2011-11-29 | 1 | -0/+2 |
| | | |||||
| * | Bug #887765: Interrupted connection to memcache server can cause | Sean Reifschneider | 2011-11-29 | 2 | -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 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 | 2 | -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 Reifschneider | 2011-11-27 | 1 | -0/+7 |
| | | |||||
| * | Adding commented-out timed delete test. | Sean Reifschneider | 2011-11-27 | 1 | -2/+15 |
| | | |||||
| * | * Bug #713451: server.expect("END") needs to be in a finally block | Sean Reifschneider | 2011-11-27 | 2 | -2/+8 |
| | | | | | | 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 | 2 | -4/+1 |
| | | |||||
| * | Bug: #741090: cas cache can grow unbounded. Default now is that the | Sean Reifschneider | 2011-11-27 | 2 | -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 keynames | Sean Reifschneider | 2011-11-27 | 2 | -1/+4 |
| | | | | | Now allow spaces in keys. Proposed by cpaetzel. | ||||
| * | Bug #728359: Make python-memcache work on memcache restarts. | Sean Reifschneider | 2011-11-27 | 2 | -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 Reifschneider | 2011-11-27 | 2 | -0/+9 |
| | | |||||
| * | * Bug #798342: If memcached server sends unknown flag in response for | Sean Reifschneider | 2011-11-27 | 2 | -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 Reifschneider | 2010-12-20 | 1 | -0/+2 |
| | | |||||
| * | Changelog entry for last commit. | Sean Reifschneider | 2010-12-16 | 1 | -0/+3 |
| | | |||||
| * | Bug #680359: useoldserverhashfunction is broken | Sean Reifschneider | 2010-12-16 | 1 | -0/+1 |
| | | |||||
| * | Adding marker for 1.46 release. | Sean Reifschneider | 2010-12-16 | 1 | -0/+2 |
| | | |||||
| * | Delete result code checking. | Sean Reifschneider | 2010-12-15 | 2 | -4/+15 |
| | | |||||
| * | When using set_multi and one value is too big, traceback | Sean Reifschneider | 2010-12-15 | 2 | -6/+14 |
| | | |||||
| * | Bug #529855: Server host can now be bare host without ":<port>". | Sean Reifschneider | 2010-12-15 | 2 | -1/+4 |
| | | |||||
| * | readline() returns '' instead of None on dead server. | Sean Reifschneider | 2010-12-15 | 2 | -1/+5 |
| | | |||||
| * | Typo fix "compession" -> "compRession". | Sean Reifschneider | 2010-12-15 | 2 | -1/+3 |
| | | |||||
| * | Fixing Bug #509712: "TypeError: 'NoneType' object is unsubscriptable" | Sean Reifschneider | 2010-12-15 | 2 | -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 Reifschneider | 2010-12-15 | 1 | -2/+8 |
| | | |||||
| * | Bug #628339: Read from server sometimes fails | Sean Reifschneider | 2010-12-15 | 1 | -0/+2 |
| | | |||||
| * | Changing licensing and authorship. | Sean Reifschneider | 2010-02-08 | 4 | -9/+17 |
| | | |||||
| * | For 1.45 release. | Sean Reifschneider | 2009-11-28 | 1 | -0/+4 |
| | | |||||
| * | Release script is adding document file. | Sean Reifschneider | 2009-11-28 | 2 | -1/+4 |
| | | |||||
| * | Running tests and fixing issues found so far. | Sean Reifschneider | 2009-11-28 | 1 | -44/+53 |
| | | | | | Adding overall test status message. | ||||
| * | Removing the pyc file from version control. | Sean Reifschneider | 2009-11-28 | 1 | -0/+0 |
| | | |||||
| * | Adding additional name for the garbage collecting fix. | Sean Reifschneider | 2009-11-28 | 1 | -1/+1 |
| | | |||||
