1. 程式人生 > 實用技巧 >redis PHP 操作筆記

redis PHP 操作筆記

<?php
    //1111111111111111
    //連線本地的 Redis 服務
    //   $redis = new Redis();
    //   $redis->connect('127.0.0.1', 6379);
    //   //echo "Connection to server successfully";
    //          //檢視服務是否執行
    //   echo "Server is running: " . $redis->ping();

    //phpinfo()
    
    
    //222222222222222222222222
    //連線本地的 Redis 服務 Redis PHP String(字串) 例項
    //$redis = new Redis();
    //$redis->connect('127.0.0.1', 6379);
    //echo "Connection to server successfully";
    //設定 redis 字串資料
    //$redis->set("config_host", "wwww.baidu.com");
  // 獲取儲存的資料並輸出
     //echo $redis->get("tutorial-name");
    //echo "config_host:: " . $redis->get("config_host");//獲取

    
    //33333333333333333333333333
    //連線本地的 Redis 服務 Redis PHP List(列表) 例項
//   $redis = new Redis();
//   $redis->connect('127.0.0.1', 6379);
//   echo "Connection to server successfully";
//   //儲存資料到列表中
//   $redis->lpush("tutorial-list", "Redis");
//   $redis->lpush("tutorial-list", "Mongodb");
//   $redis->lpush("tutorial-list", "Mysql");
//   // 獲取儲存的資料並輸出
//   $arList = $redis->lrange("tutorial-list", 0 ,5);
//   echo "Stored string in redis";
//   print_r($arList);
        
        
        //44444444444444444444444
        //Redis PHP Keys 例項 打印出全部的key
        //連線本地的 Redis 服務
    //   $redis = new Redis();
    //   $redis->connect('127.0.0.1', 6379);
    //   echo "Connection to server successfully";
    //   // 獲取資料並輸出
    //   $arList = $redis->keys("*");
    //   echo "Stored keys in redis:: ";
    //   print_r($arList);
/*** 總結 $redis = new Redis();//例項化 $redis->connect('127.0.0.1', 6379);//連線 $redis->set("config_host", "wwww.baidu.com");//設定字串 $redis->get("config_host");//讀取字串 // 存列表 //儲存資料到列表中 // $redis->lpush("tutorial", "Redis"); // $redis->lpush("tutorial", "Mongodb"); // $redis->lpush("tutorial", "Mysql"); // // 獲取儲存的資料並輸出 // $arList = $redis->lrange("tutorial", 0 ,5); // // 獲取資料並輸出 // $arList = $redis->keys("*"); *
*/ ?>