Wamp 以及 Linux 下使用 Redis

2021-09-11 21:18:50 字數 1220 閱讀 4529

資料表中資料達到萬條以及訪問量增高,來使用 redis 來提高**高可用訪問。

wamp下的使用:

1:尋找對應版本並安裝 redis 和 igbinary

2:使用

進入對應位數目錄下執行:

#開啟 redis

redis-server.exe redis.conf

#開啟新視窗,還在原來的redis目錄下執行連線:

redis-cli.exe -h 127.0.0.1 -p 6379

#輸出以下資訊表示成功

λ redis-cli.exe -h 127.0.0.1 -p 6379

redis 127.0.0.1:6379> set test "new redis"

ok#新增測試

#增加test值

set test "new redis"

#讀取get test

3:設定 php 的 redis 擴充套件

compile可以看到windows裡的編譯版本(我的是vc14)

architecture 架構 (我的是x64)

threadsafe 執行緒型別enable表示開啟。我們需要找的php擴充套件就是 php7.0- vc14 ts-x64

注意 php 版本 和 對應 ts 及 architecture 版本

#新增 擴充套件的時候一定要

extension=php_igbinary.dll

extension=php_redis.dll

#這個順序

5:框架中測試,我在 thinkphp5.1 中測試

$redis = new \redis();

$redis->connect('127.0.0.1', 6379);

echo "connection to server sucessfully";

//檢視服務是否執行

echo "server is running: " . $redis->ping().'

';

linux下tftp安裝以及使用

tftp協議簡介 1.實驗板搭載的是lubuntu作業系統,安裝命令與網上有所不同 sudo apt get install xinetd tftp tftpd安裝xinetd tftp tftpd 2.配置tftp伺服器 建立配置檔案 新建檔案 etc xinetd.d tftp,寫入如下內容 s...

linux下ftp安裝以及使用

1 ftp伺服器的簡介 ubuntu安裝ftp伺服器 1 安裝vsftpd sudo apt get install vsftpd ubuntu10.10自己裝了,這步省略。2 配置vsftpd 2.1 修改vsftpd的配置檔案。此類配置檔案通常位於 etc 目錄下。sudo gedit etc ...

linux下使用git倉庫,以及使用github

在linux下搭建git環境 1 建立github賬號,2 linux建立ssh金鑰 plain view plain copy ssh keygen t rsa c your email.com 一直預設就可以了 3 將公鑰加入到github賬戶資訊account settings ssh key...