redis api的使用和理解
通用命令
- 字串型別
- 雜湊型別
- 列表型別
- 集合型別
- 有序集合型別
通用命令:
通用命令
單執行緒架構
資料結構和內部編碼
通用命令
keys 遍歷所有的key
dbsize exisits key del key expire key seconds 設定過期 時間 type key 資料型別
api:keys *
遍歷所有key
set hello world
set php good
set java best
keys *
java
php
hello
1: keys
mset hello world heh haha php good phe his ok
keys he[h-l]*
"hehe"
"hello"
keys ph?
keys 一般不在生產環境中使用 執行效率比較慢 會堵塞其它執行緒
keys 熱備到從節點
scan
2:dbsize
mset k1 v1 k2 v2 k3 v3 k4 v4
dbsize
4
sadd myset a b c d e
dbsize
3:exists
set a b
exists a
del a
exist a
4:del
del key #刪除指定的key-value
set a b
get a
del a
get a
**5:expire ttl persist **
expire key seconds #key 在seconds秒後過期
ttl key #檢視key剩餘的過期時間
persist key #去掉key的過期時間
set hello world
>>ok
expire hello 20
>>1
ttl hello
>>16
get hello
>>world
ttl hello
>>-2
>set hello world
ok
>expire hello 20
1
>ttl hello
16
>persist hello
1
ttl hello
-1
6:type
- string
- hash
- list
- set
- zset
- none
>set a b
ok
>type a
string
>sadd myset 1 2 3
3
type myset
set
*時間複雜度
相關文章
- redis list 使用和理解Redis
- 《Redis開發與運維》第二章 API的理解和使用(下)讀書筆記Redis運維API筆記
- 《Redis開發與運維》第二章 API的理解和使用(中)讀書筆記Redis運維API筆記
- 《Redis開發與運維》第二章 API的理解和使用(上)讀書筆記Redis運維API筆記
- MongoDB和Redis的使用MongoDBRedis
- NSProxy的理解和使用
- promise的理解和使用Promise
- 介面(API)的理解API
- python 程式的使用和理解Python
- SpringBoot之ApplicationContextInitializer的理解和使用Spring BootAPPContext
- linux使用者api和核心apiLinuxAPI
- redis api hashRedisAPI
- Web Storage API的介紹和使用WebAPI
- 理解RESTful APIRESTAPI
- Redis介紹和使用Redis
- windows下Redis的安裝和使用WindowsRedis
- 第二章 Redis API的使用 單執行緒介紹【Redis入門教程】RedisAPI執行緒
- ES6 Promise的使用和理解Promise
- git:rebase(變基)的使用和理解Git
- Java 8 Stream API: 深入理解與高效使用JavaAPI
- redis 常用api操作RedisAPI
- 深入理解Redis的scan命令Redis
- 深入理解redis的持久化Redis持久化
- Redis系列:深刻理解高效能Redis的本質Redis
- Redis篇:事務和lua指令碼的使用Redis指令碼
- 如何理解HTTP代理IP的API介面HTTPAPI
- 使用夜鶯+categraf監控redis和redis叢集Redis
- 10 分鐘徹底理解 Redis 的持久化和主從複製Redis持久化
- Vue 開發之插槽(slot)的理解和使用Vue
- Redis詳解 - SpringBoot整合Redis,RedisTemplate和註解兩種方式的使用RedisSpring Boot
- Redis的使用Redis
- 使用docker安裝mysql和redisDockerMySqlRedis
- 理解RESTful Api設計RESTAPI
- 丐版stream流理解和使用
- 白話理解和使用DOCKER VOLUMEDocker
- Redis--事務理解Redis
- 對redis深入理解Redis
- Docker的通俗理解和透過宿主機埠訪問Redis容器的例項DockerRedis