제목 | 레디스 타임아웃 질문입니다. | ||
---|---|---|---|
카테고리 | CI 2, 3 | ||
글쓴이 | 소연신 | 작성시각 | 2017/03/14 16:10:14 |
|
|||
'tcp://localhost:6379';
elseif (preg_match('#(?:tcp://)?([^:?]+)(?:\:(\d+))?(\?.+)?#', $this->_config['save_path'], $matches)) { isset($matches[3]) OR $matches[3] = ''; // Just to avoid undefined index notices below $this->_config['save_path'] = array( 'host' => $matches[1], 'port' => empty($matches[2]) ? NULL : $matches[2], 'password' => preg_match('#auth=([^\s&]+)#', $matches[3], $match) ? $match[1] : NULL, 'database' => preg_match('#database=(\d+)#', $matches[3], $match) ? (int) $match[1] : NULL, 'timeout' => preg_match('#timeout=(\d+\.\d+)#', $matches[3], $match) ? (float) $match[1] : NULL );
이렇게 되어있어서.. 포트 번호 뒤에 타임아웃 주면 될 거 같은데..아무리 줘도 값이 안뜨네요..어떻게 줘야 되나요?ㅜㅜ |
|||
다음글 | 3.1.2 에서 POST 403 Forbidden Er... (2) | ||
이전글 | [해결] 안녕하세요 ciboard 로그인후 세션 사라짐... (3) | ||
소연신
/
2017/03/14 16:19:37 /
추천
0
|
자답입니다.
?timeout=1.5
이렇게 주면 되네요