1、安裝
安裝sudo apt install redis-server
檢視服務狀態
sudo systemctl status redis-server
檢視檔案位置
sudo whereis redis-server
檢視版本號
sudo redis-server --version
日誌/var/log/redis/redis-server.log
1.1、原始碼安裝
預先安裝make、gcc
sudo apt install make gcc
wget
cd src
make malloc=libc
make test
sudo make install
如果需要使用make test(可能需要安裝tcl8.5或更高版本)
you need tcl 8.5 or newer in order to run the redis test
2、配置
配置檔案位置
/etc/redis/redis.conf
3、測試
連線redis-cli -h 192.168.1.251 -p 6379
檢視服務狀態資訊
192.168.1.251:6379> ping
pong
192.168.1.251:6379>help ping 檢視幫助
退出192.168.1.251:6379>quit
4、thinkphp連線
1)安裝php redis擴充套件
wget
讀取、寫入、刪除、清空參考:
配置redis快取伺服器
1.如果是配置虛擬機器的redis快取,先開啟虛擬機器,然後用xshell連線上虛擬機器對虛擬機器進行操作。用xftp連線上虛擬機器傳入檔案。2.如果是配置雲伺服器的redis快取,直接用xshell和xftp連線上虛擬機器或者雲伺服器。如果我沒有更換檔案目錄,就是跟著走就行了 第三步 解壓redi...
Django使用redis快取伺服器
2.在setting中新增快取設定 caches 3.檢視函式 from django.core.cache import cache 引入快取模組def detail request,pk if cache.has key pk print 有cach post cache.get pk prin...
伺服器端加入快取redis
選擇redis作為伺服器端的快取 預設10分鐘清空快取 對一些公用的資料可以加入redis快取,支援多種型別 另一種是memcached快取 命令 redis cli 進入redis 和普通的key value結構不同,redis的key支援靈活的資料結構,除了strings,還有hashes li...