Skip to content

Commit 7cd4609

Browse files
committed
Updates README with changes in 0.11.0
1 parent 9cfe32b commit 7cd4609

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ A simple Redis cache backend for Django
88
Changelog
99
=========
1010

11+
0.11.0
12+
------
13+
14+
* Adds support for specifying the connection pool class.
15+
* Adds ability to set the max connections for the connection pool.
16+
1117
0.10.0
1218
------
1319

@@ -64,7 +70,9 @@ On Django >= 1.3::
6470
'OPTIONS': {
6571
'DB': 1,
6672
'PASSWORD': 'yadayada',
67-
'PARSER_CLASS': 'redis.connection.HiredisParser'
73+
'PARSER_CLASS': 'redis.connection.HiredisParser',
74+
'CONNECTION_POOL_CLASS': 'redis.BlockingConnectionPool',
75+
'MAX_CONNECTIONS': 1000,
6876
},
6977
},
7078
}

0 commit comments

Comments
 (0)