2012年5月14日

基于Redis的C客户端Hiredis的一个测试代码

摘要: 安装过程见 :http://blog.csdn.net/a600423444/article/details/7203276自己写的一个测试代码,主要是set ,get和del功能#include <stdio.h>#include <stdlib.h>#include <string.h>#include <time.h>#include <stdlib.h>#include "hiredis.h"static inline double micro_time(){ struct timeval tim; dou 阅读全文

posted @ 2012-05-14 14:37 aitilang 阅读(757) 评论(0) 推荐(0) 编辑

测试Redis过程中的小问题总结

摘要: Redis测试过程中的小问题总结 :1,如果想禁止数据写入磁盘,需要关注配置文件中的以下三项: (1)# after 60 sec if at least 10000 keys changed## Note: you can disable saving at all commenting all the "save" lines.save 900 1save 300 10save 60 10000上面的三个是触发同步到磁盘操作的条件,直接屏蔽即可(2)# IMPORTANT: Check the BGREWRITEAOF to check how to rewrite t 阅读全文

posted @ 2012-05-14 14:30 aitilang 阅读(192) 评论(0) 推荐(0) 编辑

core显示生成,却在当前目录找不到

摘要: 今天调试代码的时候运行后显示 段错误 (core dumped) 但是当前目录没有 ,查了资料发现如果代码中调用了chdir的话就很可能在该目录下,去找了下,果然在下面 :)PS: 说一个调试的小技巧 ,有时候代码有问题,但是不足以让程序崩溃,无法断定产生问题前的调用关系, 这个时候如果想主动的生成core 的话只需在该代码处人为的添加内存错误代码即可,如free(-1)。 阅读全文

posted @ 2012-05-14 09:21 aitilang 阅读(210) 评论(0) 推荐(0) 编辑

导航