热门 redis基本操作一览
benchmark 性能测试工作
check aof 检测aof日志工具
check dump 检查rdb日志工具
后台运行方法:
vim编辑conf配置文件
daemonize yes
—————查询key
keys * -查询当前所有的key
keys sit[ey] -正则去匹配中括号内的字符返回keys
...
benchmark 性能测试工作
check aof 检测aof日志工具
check dump 检查rdb日志工具
后台运行方法:
vim编辑conf配置文件
daemonize yes
—————查询key
keys * -查询当前所有的key
keys sit[ey] -正则去匹配中括号内的字符返回keys
...
package pw.goyd.db;
import pw.goyd.game.constant.setting.ServerSetting;
import pw.goyd.game.server.ServerLog;
import pw.goyd.subscribe.Publisher;
import redis.clients.jedis.Jedis;
import redis.cl...