Path to this page:
./
devel/py-memcached,
Python memcached client
Branch: CURRENT,
Version: 1.62,
Package name: py312-memcached-1.62,
Maintainer: kamel.derouicheThis software is a 100% Python interface to the memcached memory cache daemon.
It is the client side software which allows storing values in one or more,
possibly remote, memcached servers.
Required to run:[
devel/py-setuptools] [
lang/python27] [
lang/py-six]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 27.921 KB
Version history: (Expand)
- (2024-11-11) Updated to version: py312-memcached-1.62
- (2024-01-15) Updated to version: py311-memcached-1.62
- (2024-01-05) Updated to version: py311-memcached-1.61
- (2023-02-09) Updated to version: py310-memcached-1.59nb1
- (2022-01-05) Updated to version: py39-memcached-1.59nb1
- (2021-10-07) Updated to version: py39-memcached-1.59
CVS history: (Expand)
2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message:
py-*: remove unused tool dependency
py-setuptools includes the py-wheel functionality nowadays
|
2024-01-15 09:35:39 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-memcached: updated to 1.62
1.62
delete() return value now is 1 for "DELETED" and 0 for \
"NOT_FOUND" or server error.
|
2024-01-05 19:05:52 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-memcached: updated to 1.61
1.61
* Fixing the ChangeLog entry which had a bad date.
1.60
* Allow to use a datetime.timedelta parameter for Client.set
* Fix cmemcahe_hash 0 values being translated to 1
* Fix tuple key support in multi methods
* Add support for default value in get
* test_memcache.py: try import unittest.mock
* Use == as suggested by Python 3.8
* Decoding in slab funcs, replacing "1" with "True" in while.
* Tell PyPI to parse README as markdown
* test_memcache.py: try import unittest.mock
* Removed Python 2.7 from setup.cfg, adding 3.8-3.12
* Add support for default value in get()
* Fix tuple key support in multi methods (regression in 1.55).
* Fix cmemcahe_hash 0 values being translated to 1. For example "ob"
would hash to 0 and then get converted to 1. Looks like this dated
back to 2009, the original code we imported for that hash function.
* Removing six.PY2/3 conditionals
* Removing "time" from delete and making expiry mandatory in touch.
* Added quit() method. This method sends the 'quit' command to the
servers and then closes the connections, reducing the number of
TIME_WAIT sockets hanging around the OS.
* Allow to use a datetime.timedelta parameter for Client.set
* Allow keys to be encoded before use.
* Removing historic python 2to3 code and deprecated socket.error (for
OSError).
* Updating to the latest PSF license
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2017-12-17 17:50:51 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-memcached: updated to 1.59
1.59:
* Added testing for Python 3.5 and 3.6
* Fixed typos in docstrings
* Removing Python 2.6, 3.2, and 3.3 testing
* Removing unnecessary parens in return statements
* Remove unused _has_unicode/_str_cls vars
* Add flake8 testing and cleanups
* Fixed storing non-ASCII values on Python 2 and binary values on Python 3
* Fixed touch(..., time=0) command
|
2017-05-29 11:24:45 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
1.58 release:
* Fixing a performance regression in v1.54 in Python 2, using cPickle again.
* Support for "stats slabs".
* get_stats encoding fix.
* Pin Six version to >= 1.4
* setup.py build process pulls version from memcached.py
* delete() and delete_multi() now default the "time" argument to None,
since the protocol doesn't allow a time in some implementations.
|