概述
redisTemplate.getConnectionFactory().getConnection().select(uvIndex); 依据api 此代码可以切换dbindex,不过实际没有生效!
找了找原因:是我用法有问题
正确写法应该是
JedisConnectionFactory factory =
(JedisConnectionFactory) redisTemplate.getConnectionFactory();
factory.setDatabase(dbIndex);//dbindex就是你想切换的db
redisTemplate.setConnectionFactory(factory);
参考链接 https://blog.csdn.net/jlh912008548/article/details/78982008
最后
以上就是俭朴玉米为你收集整理的redistemplate动态切换dbindex的全部内容,希望文章能够帮你解决redistemplate动态切换dbindex所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复