Redis 常见命令 有更新! 2022年11月25日 23:06:42 | 2,034 浏览 | 0 评论 | redis 检查操作系统配置 redis-server --check-system 结果如下,说明检查通过: [slow-clocksource]...OK [xen-clocksource]...OK [overcommit]...OK [THP]...OK 检查server内存 redis-server --test-memory 1024 --- 长期跟新
autoreconf -ivf 报错error: required file './ltmain.sh' not found 2022年11月18日 22:35:52 | 2,183 浏览 | 0 评论 | redis 在编译源码https://github.com/RedisLabs/memtier_benchmark 的时候执行下面命令: autoreconf -ivf ./configure make sudo make install 报错如下: error: required file './ltmain.sh' not found
redis 命令exists vs get 有更新! 2022年11月11日 00:21:49 | 2,090 浏览 | 0 评论 | redis Jedis redis 命令exists vs get,在判断key是否存在的场景下: exists速度更快,可以忽略类型。 get只适用于string类型,当值越大时,速度越慢。