【PHP】phpredisでredisの操作
参考
CentOSにRedisをインストールしてみる
PHPでRedisを使ってみる
Redisインストール
※OSはCentOS6
yumリポジトリのepelの追加
rpm -ivh http://ftp-srv2.kddilabs.jp/Linux/distributions/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
Redisインストール
yum -y install redis --enablerepo=epel
起動/自動起動設定
service redis start
chkconfig redis on
phpredisのインストール
補足
PHPでは、Predisとphpredisが有力。PredisはPHPのみで記載されたライブラリで、phpredisはC言語のエクステンションとのこと。phpredisの方が高速。
phpredisインストール
yum -y install php-pecl-redis --enablerepo=epel
Apacheを再起動して反映
service httpd restart
phpredisの使い方
String型
$redis = new Redis();
$redis->connect("127.0.0.1",6379);
//クリア
$redis->delete('key');
//値のセット
$redis->set('key', 'value');
//値の取得
$value = $redis->get('key');
$redis = new Redis();
$redis->connect("127.0.0.1",6379);
//クリア
$redis->delete('key');
//値のセット
$redis->set('key', 'value');
//値の取得
$value = $redis->get('key');
Author And Source
この問題について(【PHP】phpredisでredisの操作), 我々は、より多くの情報をここで見つけました https://qiita.com/kazu56/items/a0ca670d734f58a0cc96著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .