Skip to content

Commit

Permalink
Updates README with changes in 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebleier committed Feb 19, 2014
1 parent 9cfe32b commit 7cd4609
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.rst
Expand Up @@ -8,6 +8,12 @@ A simple Redis cache backend for Django
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
------

Expand Down Expand Up @@ -64,7 +70,9 @@ On Django >= 1.3::
'OPTIONS': {
'DB': 1,
'PASSWORD': 'yadayada',
'PARSER_CLASS': 'redis.connection.HiredisParser'
'PARSER_CLASS': 'redis.connection.HiredisParser',
'CONNECTION_POOL_CLASS': 'redis.BlockingConnectionPool',
'MAX_CONNECTIONS': 1000,
},
},
}
Expand Down

0 comments on commit 7cd4609

Please sign in to comment.