六月丁香五月婷婷,丁香五月婷婷网,欧美激情网站,日本护士xxxx,禁止18岁天天操夜夜操,18岁禁止1000免费,国产福利无码一区色费

學(xué)習(xí)啦 > 學(xué)習(xí)電腦 > 操作系統(tǒng) > Linux教程 > linux redis常用命令設(shè)置方法

linux redis常用命令設(shè)置方法

時間: 佳洲1085 分享

linux redis常用命令設(shè)置方法

  redis常用命令是常見的操作命令,下面由學(xué)習(xí)啦小編為大家整理了linux redis常用命令,希望大家喜歡!

  linux redis常用命令

  啟動 Redis 服務(wù)

  src/redis-server或者src/redis-server redis.conf

  src/redis-server redis.conf 1>log.log 2>errlog.log

  1為標(biāo)準(zhǔn)輸出,2為錯誤輸出

  將 Redis 作為 Linux 服務(wù)隨機(jī)啟動

  vi /etc/rc.local, 加入代碼:

  /root/install/redis-2.4.9/src/redis-server

  客戶端連接

  src/redis-cli

  停止redis服務(wù):

  src/redis-cli shutdown

  增刪改查:

  keys *

  取出當(dāng)前匹配的所有key

  > exists larry

  (integer) 0

  當(dāng)前的key是否存在

  del lv

  刪除當(dāng)前key

  expire

  設(shè)置過期時間

  > expire larry 10

  (integer) 1

  > move larry ad4

  (integer) 1

  移動larry鍵值對到ad4數(shù)據(jù)庫

  > persist lv

  (integer) 1

  移除當(dāng)前key的過期時間

  randomkey

  隨機(jī)返回一個key

  rename

  重命名key

  type

  返回值的數(shù)據(jù)類型

  type testlist

  list

  > ping

  PONG

  測試連接是否還在

  >echo name

  "larry"

  打印

  > select ad4databank

  OK

  數(shù)據(jù)庫切換

  > quit

  退出連接

  > dbsize

  (integer) 12

  當(dāng)前數(shù)據(jù)庫中key的數(shù)量

  > info

  服務(wù)器基本信息

  monitor

  實時轉(zhuǎn)儲收到的請求

  config get

  獲取服務(wù)器的參數(shù)配置

  flushdb

  清空當(dāng)前數(shù)據(jù)庫

  flushall

  清除所有數(shù)據(jù)庫

3572390