redistemplate指定快取某個資料庫

2021-10-08 12:28:57 字數 686 閱讀 4591

我用的是springboot 自己配置了乙個redistempate的實現

@configuration

public

class

qi7redisconfig

}

接下來就是自動注入了

//自動注入 注意泛型需要保持一致

@autowired

private redistemplate

coderedis;

private logger log = logge***ctory.

getlogger

(usercontroller.

class);

integer code = numbe***ctory.

generatednumber(6

);//快取到redis

coderedis.

opsforvalue()

.set

(id , code , duration.

ofminutes(3

));return

newresult

(code , result.status.ok ,

"getcode success"

);

現在就可以開啟redis client看是否快取到指定的庫了

RedisTemplate操作Redis常用

redistemplate中定義了對5種資料結構操作 redistemplate.opsforvalue 操作字串 redistemplate.opsforhash 操作hash redistemplate.opsforlist 操作list redistemplate.opsforset 操作se...

redistemplate事務實踐

code public object testredismulti catch interruptedexception e now string operations.opsforvalue get testredismulti system.out.println now object rs o...

RedisTemplate快取用法小記

2 redis的引用包 org.springframework.data spring data redis 1.8.6.release 3 redistemplate裡面有如下幾種常用的形式 1 string型別 redistemplate.opsforvalue 2 list型別 rediste...