Open khanhhua opened 8 years ago
Class Connection constructor does not have argument for db name and password? How can I connect from Heroku to Redis Cloud?
class Connection(object): def __init__(self, host='localhost', port=6379, unix_socket_path=None, event_handler_proxy=None, stop_after=None, io_loop=None): self.host = host self.port = port self.unix_socket_path = unix_socket_path self._event_handler = event_handler_proxy self.timeout = stop_after self._stream = None self._io_loop = io_loop self.in_progress = False self.read_callbacks = set() self.ready_callbacks = deque() self._lock = 0 self.info = {'db': 0, 'pass': None}
Class Connection constructor does not have argument for db name and password? How can I connect from Heroku to Redis Cloud?