redis和hiredis-master使用心得

redis的安装,使用ubuntu环境
使用了两种方式,
一种是apt-get install redi-sever 简单方便,但是没有源码


一种是从redis.io上下载最新的package,执行make,makeinstall,
然后如下操作
1. 修改conf中的daemon 为yes
2. mkdir -p /etc/redis
3. cp redis.conf /etc/redis
4. /usr/local/bin/redis-server /etc/redis/redis.conf 使用ps命令查看是否已经后台运行
5. 修改rc.local 增加一段 /usr/local/bin/redis-server /etc/redis/redis.conf




hiredis使用
1. 从https://github.com/redis/hiredis中下载
2. unzip解压后,执行make && make install 复制了.h文件同时也复制了so和lib文件
3. 增加so路径 在/etc/ld.so.conf文件中最后一行增加/usr/local/lib, 执行下./ldconfig
4. 进入到example目录下
5. 编译example.c 
gcc -o example -I../ example.c -lhiredis
6. 编译example-ae.c 这个是异步调用方式
编译时发现有问题,baidu后找到解决方案,按照如下方式
1. 首先,在redis-2.6.15/src目录下,找到ae.c、ae.h、ae_epoll.c、config.h、zmalloc.c、zmalloc.h,将它们拷贝到hiredis目录下
2. 用gcc -c ae.c 生成 ae.o, 用gcc -c zmalloc.c生成zmalloc.o,用ar -r libae.a ae.o zmallo.o生成静态库
3. cp libea.a 到example目录下
4. gcc -o example-ae example-ae.c -I../ -lae -L. -lhiredis


你可能感兴趣的:(redis和hiredis-master使用心得)