Redis 是一個存在記憶體中的 (in-memory) 的 開源的NoSQL資料庫,
使用key-value方式儲存
值的部分可以接受:
- 字串(String)
- 哈希(Hash)
- 列表(list)
- 集合(sets)
- 有序集合(sorted sets)
- bitmap
- hyperloglog
- 等類型
- 安裝 Redis
- 啟動 Redis
- 存入資料、取出資料
- 圖形化使用者管理介面 Redis Desktop Manager
安裝位置:下載版本3.2.100
https://github.com/microsoftarchive/redis/releases/tag/win-3.2.100
解壓縮後把資料夾檔名改成 Redis
開啟 cmd。
切換至Redis 資料夾下。
執行安裝指令
redis-server --service-install redis.windows.conf
檢查是否安裝完成:服務 -> Redis
直接按右鍵啟用或停用
也可以使用指令:
啟用:redis-server --service-start
停用: redis-server --service-stop
卸載:
redis-server --service-uninstall
redis.windows.conf
我們需要的資訊
- 預設ip : bind 127.0.0.1
- 預設port號 : port 6379
- 當下會建立 db 數量: databases 16
cmd 先到 redis 的根目錄
cd Redis
redis-cli -h 127.0.0.1 -p 6379
set 資料 & get 資料 ( Key - Value 存入一個資料 )
存入資料 set key value
取出資料 get key value
官網安裝最新版目前是要收費的,可以先使用它之前的版本(免費)
到官方 github 有提供舊的版本檔案下載
https://github.com/uglide/RedisDesktopManager/releases/tag/0.8.8
下一步把它裝完
install : 安裝到預設路徑
安裝完畢後 開啟
先連線
連線後可以看到 預設建立的16個DB,及剛剛建立的資料 name
在建立一筆資料 addr taipei
目前為兩筆資料了
Yiru@Studio - 關於我 - 意如