Commit d7972d4d authored by Sean Bleier's avatar Sean Bleier

Updates README to include changelog for 0.11.1

parent c62494ad
......@@ -8,6 +8,12 @@ A simple Redis cache backend for Django
Changelog
=========
0.11.1
------
* Allows user to specify the connection pool class kwargs, e.g. timeout,
max_connections, etc.
0.11.0
------
......@@ -72,6 +78,10 @@ On Django >= 1.3::
'PASSWORD': 'yadayada',
'PARSER_CLASS': 'redis.connection.HiredisParser',
'CONNECTION_POOL_CLASS': 'redis.BlockingConnectionPool',
'CONNECTION_POOL_CLASS_KWARGS': {
'max_connections': 50,
'timeout': 20,
}
'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