diff options
| author | Sean Reifschneider <jafo@tummy.com> | 2011-11-27 18:10:38 -0700 |
|---|---|---|
| committer | Sean Reifschneider <jafo@tummy.com> | 2011-11-27 18:10:38 -0700 |
| commit | 7062206e26bdc5c201abdc3694fc931a9684488e (patch) | |
| tree | 1fed4c46f227909519e7b4e5dd484f39ccdf5dd7 /ChangeLog | |
| parent | 882c5ab5da13d38e3be94edb43a6b23bbd3a934f (diff) | |
| download | python-memcached-7062206e26bdc5c201abdc3694fc931a9684488e.tar.gz | |
Bug #745633: Values of maximum size are not stored
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.
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ + * Bug #745633: Values of maximum size are not stored + 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. + * Bug #713488: Issues Invalid "delete" command. Protocol has changed so that the "delete" operation no longer takes a "time" argument. It seems that some servers will refuse a "delete key |
