标签:http io ar on ad line as tt 安装
网站即将完工的时候,开始做一下性能测试,发现有些查询的性能实在难以提升,所以寻求Redis来解决。过程如下:
安装Ubuntu Server 14.04.1 LTS
下载最新稳定版本的Redis, http://download.redis.io/releases/redis-2.8.17.tar.gz
tar解压
cd redis-2.8.17
make
出错,报CC找不到,应该是这个server版本默认不带安装gcc,于是,sudo apt-get install gcc
再make,出错,报 jemalloc/jemalloc.h: No such file or directory,stackoverflow上一搜,解决方法是
cd deps
make hiredis jemalloc linenoise lua
cd ..
make install
cd .. 再次make
编译成功,提示先 make test 下
make test, 报错,没有 tcl, 于是 sudo apt-get install tcl
make test 全部通过
sudo make install
13 done.
标签:http io ar on ad line as tt 安装
原文地址:http://my.oschina.net/u/248080/blog/342032