summaryrefslogtreecommitdiff
path: root/redis/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* version bump!2.4Andy McCurdy2011-06-011-1/+1
|
* added Connection and UnixDomainSocketConnection to module importsAndy McCurdy2011-05-231-3/+7
|
* version bumpAndy McCurdy2011-03-171-1/+1
|
* add PubSubError to better report disallowed command when using pub/subDan Colish2011-03-141-1/+2
|
* Raise DataError on empty hmset mappings, remove InvalidDataDan Colish2011-03-141-4/+11
|
* version bump and changelog notesAndy McCurdy2011-02-081-1/+1
|
* reverting download_url back to redis-VERSION.tar.gz to fix #94. This is ↵Andy McCurdy2011-01-071-1/+1
| | | | becoming the official 2.2.2 release.
* updating setuptools to look for redis-py-VERSION.tar.gzAndy McCurdy2010-12-211-1/+1
|
* version bumpAndy McCurdy2010-12-201-1/+1
|
* version bumpAndy McCurdy2010-09-031-1/+1
|
* version bumpAndy McCurdy2010-06-281-1/+1
|
* added ZREMRANGEBYRANK commandAndy McCurdy2010-06-151-0/+2
|
* [issue 29] Redis instance doesn't use shared connection pool by defaultKonstantin Merenkov2010-04-121-2/+2
| | | | | | | | | | | | | | | * Redis constructor accepts connection_pool keyword argument, that defaults to None (no shared connection pool). However, you can create ConnectionManager instance yourself and pass it to as many Redis instances as you want, making them use shared connection pool. * Renamed ConnectionManager to ConnectionPool. * Exported ConnectionPool, so now you can import it in your code and create instances. * Removed test_pipeline_with_fresh_connection test, since all redis instances don't use shared pool by default now. * corrected few typos in comments. * repaired the rest of tests.
* Flushed out the connection manager object a bit more.Andy McCurdy2010-03-121-2/+2
|
* new client passes all command tests, still need tests for connection pool ↵andymccurdy2010-02-151-5/+5
| | | | and pipelining.
* moved exceptions to their own moduleandy2010-01-131-4/+6
|
* - redis is now in it's own module. existing client imported and added to ↵andy2010-01-131-0/+8
__all__ providing backards compat. - tests can now be run by running the tests.py file