Linux下Redis的安裝使用

來源:互聯網
上載者:User

Linux下Redis的安裝使用

Redis是什嗎?

Redis是一個開源的使用ANSI C語言編寫、支援網路、可基於記憶體亦可持久化的日誌型、Key-Value資料庫,並提供多種語言的API。redis是一個key-value儲存系統。和Memcached類似,它支援儲存的value類型相對更多,包括string(字串)、list(鏈表)、set(集合)、zset(sorted set --有序集合)和hash(雜湊類型)。這些資料類型都支援push/pop、add/remove及取交集並集和差集及更豐富的操作,而且這些操作都是原子性的。 

Redis安裝(Linux)

cd /usr/local

wget http://download.redis.io/releases/redis-3.0.7.tar.gz 擷取Redis安裝包

tar xvf redis-3.0.7.tar.gz

cd redis-3.0.7

make

make && install

Redis常用命令

redis-server redis.conf ##啟動redis

redis-cli ##進入redis用戶端(無密碼狀態)  |  redis-cli -a yourpassword ##進入redis用戶端(有密碼狀態)

redis-cli shutdown ##停止redis服務

Redis基本操作

keys * ##查看redis中存在的所有的鍵

set word helloworld ##向redis中插入索引值對資料,鍵為word,值為helloworld

get word ##根據鍵取值,結果為helloworld

exists word ##查看鍵是否存在

del word ##刪除當前key

expire word 10 ##為相應的鍵設定到期時間

persist word ##移除當前key的到期時間

randomkey ##隨機返回一個key

type datalist ##傳回值得資料類型

lpush datalist redis ##向redis插入資料redis到集合頭部(左)

rpush datalist org ##向redis插入資料org到集合尾部(右)

lrange datalist 0 4 ##查詢集合中的索引為0-4的資料 flashall ##清空所有資料

更多操作請查看redis官方使用文檔

redis在java中的使用:spring-redis整合


 

關於redis的使用就先寫到這兒吧

下面關於Redis的文章您也可能喜歡,不妨參考下:

Ubuntu 14.04下Redis安裝及簡單測試

Redis主從複製基本配置

Redis叢集明細文檔

Ubuntu 12.10下安裝Redis(圖文詳解)+ Jedis串連Redis

Redis系列-安裝部署維護篇

CentOS 6.3安裝Redis

Redis安裝部署學習筆記

Redis設定檔redis.conf 詳解

Redis 的詳細介紹:請點這裡
Redis 的:請點這裡

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.