GET
指定したキーのデータ(文字列)を取得する。
GET redis-cli
[sourcecode language=”bash”]
redis 127.0.0.1:6379> set key01 testval
OK
redis 127.0.0.1:6379> get key01
"testval"
[/sourcecode]
GET owlient-phpredis
[sourcecode language=”bash”]
$redis = new Redis();
$redis->connect(‘localhost’, 6379);
echo $redis->set(‘key_01’, "testval" , 3600);
echo $redis->get(‘key_01’);
[/sourcecode]