redis安装
1. 下载
http://download.redis.io/releases/redis-2.8.17.tar.gz
2 解压
tar -zxvf redis-2.8.17.tar.gz
cd redis-2.8.17
make
3. 报错
make test 报错
You need tcl 8.5 or newer in order to run the Redis test
4. 安装tcl
wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz
sudo tar xzvf tcl8.6.1-src.tar.gz -C /usr/local/
cd /usr/local/tcl8.6.1/unix/
sudo ./configure
sudo make
sudo make install
5. 启动
cd src
nohup redis-server ../redis.conf &
6. 安装redis admin 找一个nginx可用的目录放到下面
git clone https://github.com/ErikDubbelboer/phpRedisAdmin.git cd phpRedisAdmin git clone https://github.com/nrk/predis.git vendor
twemproxy 代理, hash分发,
redis一些文档
一个hash结构可以存放 4294967295 个键值对
redis集群搭建可以用http://mdba.cn/?p=157