实战:第十一篇:StringRedisTemplate获取redis信息
需求:
解答:
导入相关的pom.xml
然后给配置:
最后在给上api:
Properties info = stringRedisTemplate.getRequiredConnectionFactory().getConnection().info("memory");
可选参数:
server:有关Redis服务器的常规信息
clients:客户端连接部分
memory:内存消耗相关信息
persistence:RDB和AOF相关信息
stats:一般统计
replication:主/副本复制信息
cpu:CPU消耗统计信息
commandstats:Redis命令统计
cluster:“ Redis群集”部分
keyspace:与数据库相关的统计
更多内容请见原文,原文转载自:https://blog.csdn.net/weixin_44519496/article/details/120583580