summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShivaram Lingamneni <slingamn@cs.stanford.edu>2016-06-24 17:36:22 -0700
committerShivaram Lingamneni <slingamn@cs.stanford.edu>2016-06-24 17:36:22 -0700
commitefd0643e66dd9c2cee03ac83c9ea1eff418d1550 (patch)
tree07af82d6e912065aa9e8588f5a4be7194009e7b4
parent7bbea17d23a09d04a727a7ca99fc9e3883d571f3 (diff)
downloadpymemcache-efd0643e66dd9c2cee03ac83c9ea1eff418d1550.tar.gz
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
---------------