php怎么將數據導入redis?
開始在PHP中使用redis前,要確保已經安裝了redis服務及PHPredis驅動,且你的機器上能正常使用PHP。
PHP安裝redis擴展
/usr/local/php/bin/phpize#php安裝后的路徑
./configure--with-php-config=/usr/local/php/bin/php-config
make&&makeinstall
修改php.ini文件
vi/usr/local/php/lib/php.ini
增加如下內容:
extension_dir="/usr/local/php/lib/php/extensions/no-debug-zts-20090626"
extension=redis.so
安裝完成后重啟php-fpm或apache。查看phpinfo信息,就能看到redis擴展。
連接到redis服務
<?php
//連接本地的Redis服務
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//查看服務是否運行
echo"Serverisrunning:".$redis->ping();
?>
執行腳本,輸出結果為:
Connectiontoserversucessfully
Serverisrunning:PONG
RedisPHPString(字符串)實例
<?php
//連接本地的Redis服務
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//設置redis字符串數據
$redis->set("tutorial-name","Redistutorial");
//獲取存儲的數據并輸出
echo"Storedstringinredis::".jedis.get("tutorial-name");
?>
執行腳本,輸出結果為:
Connectiontoserversucessfully
Storedstringinredis::Redistutorial
RedisPHPList(列表)實例
<?php
//連接本地的Redis服務
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//存儲數據到列表中
$redis->lpush("tutorial-list","Redis");
$redis->lpush("tutorial-list","Mongodb");
$redis->lpush("tutorial-list","Mysql");
//獲取存儲的數據并輸出
$arList=$redis->lrange("tutorial-list",0,5);
echo"Storedstringinredis::"
print_r($arList);
?>
執行腳本,輸出結果為:
Connectiontoserversucessfully
Storedstringinredis::
Redis
Mongodb
Mysql
RedisPHPKeys實例
<?php
//連接本地的Redis服務
$redis=newRedis();
$redis->connect('127.0.0.1',6379);
echo"Connectiontoserversucessfully";
//獲取數據并輸出
$arList=$redis->keys("*");
echo"Storedkeysinredis::"
print_r($arList);
?>
執行腳本,輸出結果為:
Connectiontoserversucessfully
Storedstringinredis::
tutorial-name
tutorial-list