내 PHP 버전: 5.3.10, Apache: 2.2.21, 개발 환경: windows
1. 먼저 redis 확장 프로그램을 다운로드하세요:
php_igbinary.dll
php_redis.dll
다운로드 링크:
http://pan.baidu.com/s/1c0nihUw
2. Apache
extension=php_igbinary.dll
extension=php_redis.dll을 추가합니다. >
3. Apache를 다시 시작하고테스트
$redis = new Redis();
$redis- > connect('127.0.0.1', 6379);
$res = $redis->set('hello','kitty');
var_dump($res);
var_dump($redis->get('hello'));
echo $redis->get('hello');
결과: 부울 true문자열 'kitty'(길이=5)고양이