Skip to content

Commit

Permalink
Merge pull request redis#665 from ohadpartuck/connection_pool_max_con…
Browse files Browse the repository at this point in the history
…nections

adding max_connections option to StrictRedis Class
  • Loading branch information
andymccurdy committed Nov 2, 2015
2 parents 9c13fcf + 48bb651 commit e1e6805
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions redis/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,8 @@ def __init__(self, host='localhost', port=6379,
charset=None, errors=None,
decode_responses=False, retry_on_timeout=False,
ssl=False, ssl_keyfile=None, ssl_certfile=None,
ssl_cert_reqs=None, ssl_ca_certs=None):
ssl_cert_reqs=None, ssl_ca_certs=None,
max_connections=10000):
if not connection_pool:
if charset is not None:
warnings.warn(DeprecationWarning(
Expand All @@ -418,7 +419,8 @@ def __init__(self, host='localhost', port=6379,
'encoding': encoding,
'encoding_errors': encoding_errors,
'decode_responses': decode_responses,
'retry_on_timeout': retry_on_timeout
'retry_on_timeout': retry_on_timeout,
'max_connections': max_connections
}
# based on input, setup appropriate connection args
if unix_socket_path is not None:
Expand Down

0 comments on commit e1e6805

Please sign in to comment.