6869707172737475767778
private boolean connect() throws RedisException { try { if (subscribed || tx) { return false; } redisProtocol = new RedisProtocol(new Socket(host, port)); parseInfo(); if (passwd != null) auth(passwd); if (db != 0) select(db);