我必须按需为每个请求(写入/读取)创建 RedisTemplate。连接工厂是 JedisConnectionFactory
JedisConnectionFactory factory=new
JedisConnectionFactory(RedisSentinelConfiguration,JedisPoolConfig);
有一次,我对 RedisTemplate.opsForHash/opsForValue 进行操作,如何安全地处理模板,从而将连接返回到 JedisPool。
截至目前,我这样做
template.getConnectionFactory().getConnection().close();
这是正确的方法吗?