
Redis
文章平均质量分 92
erlang_hell
这个作者很懒,什么都没留下…
展开
-
2022-05-04-Redis-Streams-译
了解Redis里面的流翻译 2022-05-04 15:18:32 · 382 阅读 · 0 评论 -
hiredis读写(同步式)
本文记录一下hiredis同步读写的操作方式。简单的实例#include <iostream>#include <stdio.h>extern "C" {#include <hiredis.h> }int test_1(){ redisContext *c = redisConnect( "127.0.0.1", 6379 ); if ( c != NULL && c原创 2016-04-16 06:57:08 · 952 阅读 · 0 评论 -
redis多实例配置
如果需要使用redis多实例。可以直接在安装目录中找到/etc/redis.conf文件,并且将其复制成redis6380.conf文件。后面的数字就是想设置的端口号。需要修改这个文件中的下面几句话: # By default Redis does not run as a daemon. Use 'yes' if you need it. # Note that Redis will wri原创 2016-06-28 09:57:49 · 1082 阅读 · 2 评论 -
Redis存盘策略hiredis的坑如何查询key
redis使用拾遗原创 2016-05-15 09:09:25 · 2813 阅读 · 0 评论 -
redis资料
redis转载 2017-01-31 16:49:10 · 288 阅读 · 0 评论