diff options
author | Alex Grönholm <alex.gronholm@nextday.fi> | 2012-08-12 18:35:51 +0300 |
---|---|---|
committer | Alex Grönholm <alex.gronholm@nextday.fi> | 2012-08-12 18:35:51 +0300 |
commit | 1811b467043e17db59d263b86aacad5e64ce4bcb (patch) | |
tree | 58844025d3ac0705ff5871cf7e0f739aa69cfc7c /docs/index.rst | |
parent | a40298a1e73d4e383e006011db6b2023c7f9ed5b (diff) | |
download | apscheduler-1811b467043e17db59d263b86aacad5e64ce4bcb.tar.gz |
Added Redis job store
Diffstat (limited to 'docs/index.rst')
-rw-r--r-- | docs/index.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/index.rst b/docs/index.rst index 9a9e440..67d7615 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -37,6 +37,7 @@ Features * File-based simple database (shelve) * `SQLAlchemy <http://www.sqlalchemy.org/>`_ (any supported RDBMS works) * `MongoDB <http://www.mongodb.org/>`_ + * `Redis <http://redis.io/>`_ Usage @@ -207,6 +208,7 @@ The other built-in job stores are: * :class:`~apscheduler.jobstores.shelve_store.ShelveJobStore` * :class:`~apscheduler.jobstores.sqlalchemy_store.SQLAlchemyJobStore` * :class:`~apscheduler.jobstores.mongodb_store.MongoDBJobStore` +* :class:`~apscheduler.jobstores.redis_store.RedisJobStore` Job stores can be added either through configuration options or the :meth:`~apscheduler.scheduler.Scheduler.add_jobstore` method. The following |