Redisコマンド覚書-SET (redis-cli & owlient-phpredis)

  • このエントリーをはてなブックマークに追加

SET

指定したキーのデータ(文字列)を登録する。

SET 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]

SET 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]

  • このエントリーをはてなブックマークに追加

SNSでもご購読できます。