We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cfe32b commit 7cd4609Copy full SHA for 7cd4609
README.rst
@@ -8,6 +8,12 @@ A simple Redis cache backend for Django
8
Changelog
9
=========
10
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
17
0.10.0
18
------
19
@@ -64,7 +70,9 @@ On Django >= 1.3::
64
70
'OPTIONS': {
65
71
'DB': 1,
66
72
'PASSWORD': 'yadayada',
67
- 'PARSER_CLASS': 'redis.connection.HiredisParser'
73
+ 'PARSER_CLASS': 'redis.connection.HiredisParser',
74
+ 'CONNECTION_POOL_CLASS': 'redis.BlockingConnectionPool',
75
+ 'MAX_CONNECTIONS': 1000,
68
76
},
69
77
78
}
0 commit comments