Installation

Download, extract and compile Redis with:

$ wget http://download.redis.io/releases/redis-2.8.17.tar.gz
$ tar xzf redis-2.8.17.tar.gz
$ cd redis-2.8.17
$ make

The binaries that are now compiled are available in the src directory. Run Redis with:

$ src/redis-server

You can interact with Redis using the built-in client:

$ src/redis-cli
redis> set foo bar
OK
redis> get foo
"bar"

如果 make报错
调用make test
 

Redis need tcl 8.5 or newer

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

最新文章

  1. ABP源码分析二十八:ABP.MemoryDB
  2. iOS开发--Swift RAC响应式编程初探
  3. HTML5实现网页的全屏切换
  4. call()与apply()
  5. VM出现该虚拟机正在使用中的提示,让获取所有权限解决办法
  6. Ubuntu14.04配置记录
  7. robots
  8. 转载:简单介绍Python中的try和finally和with方法
  9. <>跟!=
  10. 第三方账号登录--QQ登录,以及QQ微博账号登录
  11. bootstrap 常用类名
  12. Android - "cause failed to find target android-14" 问题
  13. Tween动画
  14. [新概念英语II 笔记] Lesson 3: Please Send Me a Card
  15. voa 2015 / 4 / 14
  16. Get Docker CE for CentOS
  17. VMware三种网络介绍
  18. 整合MVC实现文件上传
  19. C#模拟客户端发送数据示例
  20. gearman kubernetes 运行

热门文章

  1. Android Java 与 C++ 恒调用,路径、文件名、延长的最大长度
  2. javascript中的三角学
  3. C++使用对象指针
  4. Apple Watch 1.0 开发介绍 1.2 简介 配置Xcode工程
  5. 开源Math.NET基础数学类库使用(04)C#解析Matrix Marke数据格式
  6. ruby简单的基本 3
  7. DWR入门实例(二)
  8. 有关Struts2a的ction直接使用response异步问题
  9. JSP简明教程(四):EL表达式语言、JavaBean、Cookie、Session
  10. hdu1115(重力算法的多边形中心)