
redis
文章平均质量分 79
九品神元师
AI平台、分布式存储、分布式计算、微服务
展开
-
redis源代码编译、启动、停止
下载源代码直接在官网https://redis.io/下载最新源代码,本文下载源代码 redis-5.0.0.tar.gz,解压后目录如下:编译源代码在目录中运行:$make程序编译完成后在src目录中会有这几个文件redis-cli、redis-server。在主目录中建一个bin文件夹,把如下文件拷贝到bin文件中$cp redis.conf bin/$cp ...原创 2018-10-26 10:37:10 · 1779 阅读 · 0 评论 -
go随聊-Redis实战 操作Hash
go-redis/redis地址:https://github.com/go-redis/redisSupports:Redis 3 commands except QUIT, MONITOR, SLOWLOG and SYNC. Automatic connection pooling with circuit breaker support. Pub/Sub. Transac...原创 2018-11-06 11:52:56 · 3856 阅读 · 0 评论 -
go随聊-Redis实战 操作Set
go-redis/redis地址:https://github.com/go-redis/redisSupports:Redis 3 commands except QUIT, MONITOR, SLOWLOG and SYNC. Automatic connection pooling with circuit breaker support. Pub/Sub. Transac...原创 2018-11-06 11:28:59 · 1066 阅读 · 0 评论 -
go随聊-Redis实战 操作List
go-redis/redis地址:https://github.com/go-redis/redisSupports:Redis 3 commands except QUIT, MONITOR, SLOWLOG and SYNC. Automatic connection pooling with circuit breaker support. Pub/Sub. Transac...原创 2018-11-05 15:59:08 · 2795 阅读 · 0 评论 -
go随聊-Redis实战 操作String
go-redis/redis地址:https://github.com/go-redis/redisSupports:Redis 3 commands except QUIT, MONITOR, SLOWLOG and SYNC. Automatic connection pooling with circuit breaker support. Pub/Sub. Transac...原创 2018-11-05 15:32:11 · 819 阅读 · 0 评论 -
redis配置详细解析
# redis 配置文件示例 # 当你需要为某个配置项指定内存大小的时候,必须要带上单位,# 通常的格式就是 1k 5gb 4m 等酱紫:## 1k => 1000 bytes# 1kb => 1024 bytes# 1m => 1000000 bytes# 1mb => 1024*1024 bytes# 1g => 1000000000 b...转载 2019-01-29 15:50:12 · 333 阅读 · 0 评论