!887 fix: 获取redis命令统计指令有误

Merge pull request !887 from dhb52/N/A
main
芋道源码 2 years ago committed by Gitee
commit a4c7946830
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

@ -34,7 +34,7 @@ public class RedisController {
Properties info = stringRedisTemplate.execute((RedisCallback<Properties>) RedisServerCommands::info);
Long dbSize = stringRedisTemplate.execute(RedisServerCommands::dbSize);
Properties commandStats = stringRedisTemplate.execute((
RedisCallback<Properties>) connection -> connection.commands().info());
RedisCallback<Properties>) connection -> connection.info("commandstats"));
assert commandStats != null; // 断言,避免警告
// 拼接结果返回
return success(RedisConvert.INSTANCE.build(info, dbSize, commandStats));

Loading…
Cancel
Save