summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Gordon <charles.gordon@gmail.com>2016-06-24 20:53:43 -0700
committerGitHub <noreply@github.com>2016-06-24 20:53:43 -0700
commit9f71e71d9056f5a6df4483c4cffad0dd725aa9e3 (patch)
tree07af82d6e912065aa9e8588f5a4be7194009e7b4
parent7bbea17d23a09d04a727a7ca99fc9e3883d571f3 (diff)
parentefd0643e66dd9c2cee03ac83c9ea1eff418d1550 (diff)
downloadpymemcache-9f71e71d9056f5a6df4483c4cffad0dd725aa9e3.tar.gz
Merge pull request #101 from slingamn/pylibmc_update
update comparison to pylibmc
-rw-r--r--README.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 44a3e31..4de3383 100644
--- a/README.rst
+++ b/README.rst
@@ -51,9 +51,10 @@ pylibmc
The pylibmc library is a wrapper around libmemcached, implemented in C. It is
fast, implements consistent hashing, the full memcached protocol and timeouts.
-It does not provide access to the "noreply" flag, and it doesn't provide a
-built-in API for serialization and deserialization. It also isn't pure Python,
-so using it with libraries like gevent is out of the question.
+It does not provide access to the "noreply" flag. It also isn't pure Python,
+so using it with libraries like gevent is out of the question, and its
+dependency on libmemcached poses challenges (e.g., it must be built against
+the same version of libmemcached that it will use at runtime).
Python-memcache
---------------