summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-04-19 20:28:38 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-04-19 20:28:38 -0400
commit92bb73cb32b6c9c7d7879b3b3b41d1c7d3647da5 (patch)
tree1db68b394a025e9a318f692b4b66cde91e2cc4e1
parent380669a3966d5cfec9c28151e3ee17487e05e59f (diff)
downloaddogpile-cache-92bb73cb32b6c9c7d7879b3b3b41d1c7d3647da5.tar.gz
- doc/README tweaks
-rw-r--r--README.rst5
-rw-r--r--dogpile/cache/backends/memcached.py2
-rw-r--r--dogpile/cache/backends/redis.py8
3 files changed, 12 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 7f066e1..1182395 100644
--- a/README.rst
+++ b/README.rst
@@ -44,11 +44,12 @@ Features
lock tailored towards the backend is an optional addition, else dogpile uses
a regular thread mutex. New backends can be registered with dogpile.cache
directly or made available via setuptools entry points.
-* Backends included in the first release include three memcached backends
- (python-memcached, pylibmc, bmemcached), a backend based on Python's
+* Included backends feature three memcached backends (python-memcached, pylibmc,
+ bmemcached), a Redis backend, a backend based on Python's
anydbm, and a plain dictionary backend.
* Space for third party plugins, including the first which provides the
dogpile.cache engine to Mako templates.
+* Python 3 compatible in place - no 2to3 required.
Synopsis
--------
diff --git a/dogpile/cache/backends/memcached.py b/dogpile/cache/backends/memcached.py
index 5b123f8..d66fc1b 100644
--- a/dogpile/cache/backends/memcached.py
+++ b/dogpile/cache/backends/memcached.py
@@ -2,7 +2,7 @@
Memcached Backends
------------------
-Provides backends for talking to memcached.
+Provides backends for talking to `memcached <memcached.org>`_.
"""
diff --git a/dogpile/cache/backends/redis.py b/dogpile/cache/backends/redis.py
index 5ae48cc..29b01bb 100644
--- a/dogpile/cache/backends/redis.py
+++ b/dogpile/cache/backends/redis.py
@@ -1,3 +1,11 @@
+"""
+Redis Backends
+------------------
+
+Provides backends for talking to `redis <redis.io>`_.
+
+"""
+
from __future__ import absolute_import
from dogpile.cache.api import CacheBackend, NO_VALUE
from dogpile.cache.util import pickle