回溯法-迷宮問題
阿新 • • 發佈:2020-12-10
Redis叢集
1、Redis叢集搭建
1)準備叢集資料夾cluster
2)在叢集資料夾中建立8000-8005資料夾
mikdir 8000 8001 8002 8003 8004 8005
3)複製配置檔案
將Redis根目錄中的redis.conf 複製到cluster/8000 並以原名儲存
cp redis.conf cluster/8000/
4)編輯配置檔案
更改埠號:
關閉保護模式
啟動後臺啟動
修改pid檔案
修改持久化檔案路徑
設定記憶體優化策略
關閉AOF模式
開啟叢集配置
開啟叢集配置檔案
修改叢集超時時間
5)將8000資料夾下的redis.conf檔案分別複製進8001-8005中
6)修改8001-8005資料夾中的redis.conf
分別將8001-8005檔案中的8000改為對應的埠號的名稱,在redis.conf中輸入
%s/8000/8001/g
7)通過指令碼編輯啟動/關閉指令
vim start.sh
vim stop.sh
啟動
sh start.sh
關閉
sh stop.sh
8)建立叢集
redis-cli --cluster create --cluster-replicas 1 post:port post:port post:port post:port post:port post:port
2、SpringBoot整合Redis叢集
1)更改配置redis.properties
2)編輯RedisConfig
3)編寫切面程式碼