fjptec-xm 发表于 2018-11-6 08:12:00

Redis3.0.5学习笔记(二)基础命令与数据类型

# redis-cli  

  
127.0.0.1:6379> help @string
  

  
APPEND key value
  
summary: Append a value to a key
  
since: 2.0.0
  

  
BITCOUNT key
  
summary: Count set bits in a string
  
since: 2.6.0
  

  
BITOP operation destkey key
  
summary: Perform bitwise operations between strings
  
since: 2.6.0
  

  
127.0.0.1:6379> help @list
  

  
LLEN key
  
summary: Get the length of a list
  
since: 1.0.0
  

  
LPOP key
  
summary: Remove and get the first element in a list
  
since: 1.0.0
  

  
LPUSH key value
  
summary: Prepend one or multiple values to a list
  
since: 1.0.0
  

  
127.0.0.1:6379> help set
  

  
SET key value
  
summary: Set the string value of a key
  
since: 1.0.0
  
group: string
  

  
127.0.0.1:6379> quit
  
#


页: [1]
查看完整版本: Redis3.0.5学习笔记(二)基础命令与数据类型