mirror of
https://github.com/cowardmrx/rds_cache_go.git
synced 2026-02-02 22:33:12 +00:00
:sparkles:优化
This commit is contained in:
15
README.md
15
README.md
@@ -33,4 +33,19 @@ result,err := caches.Delete("key2")
|
||||
|
||||
// Delete More
|
||||
result,err = caches.Delete("key2","key3","key4")
|
||||
|
||||
// already redis connect client
|
||||
rdsClient := redis.NewClient(&redis.Options{
|
||||
Addr: fmt.Sprintf("%s:%s", "192.168.0.151", "6379"),
|
||||
Password: "",
|
||||
DB: 15,
|
||||
})
|
||||
|
||||
// WithRedisClient() 使用已有的redis链接客户端
|
||||
// WithOriginDB() 是否使用已经的客户端的数据库 true - 使用已有的客户端链接数据库 | false - 使用WithDB()中的数据库,如果为空默认使用0库
|
||||
// WithDB() 指定数据库,如果 WithOriginDB() 为false,WithDB()未指定的话默认使用0号库
|
||||
|
||||
caches := NewCache(WithRedisClient(rdsClient), WithOriginDB(true), WithDB(11))
|
||||
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user