Commit 7cd4609e authored by Sean Bleier's avatar Sean Bleier

Updates README with changes in 0.11.0

parent 9cfe32b3
...@@ -8,6 +8,12 @@ A simple Redis cache backend for Django ...@@ -8,6 +8,12 @@ A simple Redis cache backend for Django
Changelog Changelog
========= =========
0.11.0
------
* Adds support for specifying the connection pool class.
* Adds ability to set the max connections for the connection pool.
0.10.0 0.10.0
------ ------
...@@ -64,7 +70,9 @@ On Django >= 1.3:: ...@@ -64,7 +70,9 @@ On Django >= 1.3::
'OPTIONS': { 'OPTIONS': {
'DB': 1, 'DB': 1,
'PASSWORD': 'yadayada', 'PASSWORD': 'yadayada',
'PARSER_CLASS': 'redis.connection.HiredisParser' 'PARSER_CLASS': 'redis.connection.HiredisParser',
'CONNECTION_POOL_CLASS': 'redis.BlockingConnectionPool',
'MAX_CONNECTIONS': 1000,
}, },
}, },
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment