Heim >Backend-Entwicklung >PHP-Tutorial >PHP_Redis-Erweiterung
Meine PHP-Version: 5.3.10, Apache: 2.2.21, Entwicklungsumgebung: Windows
1. Laden Sie zuerst die Redis-Erweiterung herunter:
php_igbinary.dll
php_redis.dll
Download-Link:
http://pan.baidu.com/s/1c0nihUw
2. Fügen Sie
extension=php_igbinary.dll
extension=php_redis.dll in php.ini unter Apache
3. Starten Sie Apache neu undtesten Sie
$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');
Ergebnis: boolean truestring 'kitty' (length=5)Kätzchen