博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Redis 安装
阅读量:5216 次
发布时间:2019-06-14

本文共 1128 字,大约阅读时间需要 3 分钟。

Redis 概况

Redis是一款开源的、高性能的键-值存储(key-value store)。它常被称作是一款数据结构服务器(data structure server)。Redis的键值可以包括字符串(strings)、哈希(hashes)、列表(lists)、集合(sets)和 有序集合(sorted sets)等数据类型。 对于这些数据类型,你可以执行原子操作。例如:对字符串进行附加操作(append);递增哈希中的值;向列表中增加元素;计算集合的交集、并集与差集等。

Redis 安装

在主页 下载稳定版本,通过

wget 获取当前最新的版本

解压到某文件 tar xzvf redis-2.4.13.tar.gz

进入到 redis-2.4.13,参考README文件。

由于是在32bit下,通过命令 Make 32bit 该编译过程将会产生redis-server二进制文件。

安装完成后,执行一下make test看是否正常。

如果出现“You need 'tclsh8.5' in order to run the Redis test”。 则可运行 sudo apt-get install tcl8.5 来安装tcl。

再执行就可以了 。

在Debian上执行发现三个错误。

!!! WARNING The following tests failed:

*** [err]: Protocol desync regression test #1 in tests/unit/protocol.tcl Redis did not closed connection after protocol desync

*** [err]: Protocol desync regression test #2 in tests/unit/protocol.tcl Redis did not closed connection after protocol desync

*** [err]: Protocol desync regression test #3 in tests/unit/protocol.tcl Redis did not closed connection after protocol desync Cleanup: may take some time... OK

资源 redis 资源汇总 http://blog.nosqlfan.com/html/3537.html

转载于:https://www.cnblogs.com/westfly/archive/2012/05/18/2507737.html

你可能感兴趣的文章
APP:校园网登录app—中小南—源码简析
查看>>
SpringAop与AspectJ
查看>>
4. 开放-封闭原则
查看>>
Leetcode 226: Invert Binary Tree
查看>>
MVC 模板页和布局
查看>>
http站点转https站点教程
查看>>
解决selenium与firefox版本不兼容问题
查看>>
HSQL转化为MR过程
查看>>
Serlvet学习笔记之四—对文件的操作
查看>>
poj 2318 TOYS 2012-01-11
查看>>
关于 push 卡顿的问题
查看>>
GOOGLE突破图书馆入口IP限制之技巧
查看>>
Prolog 逻辑推导语言
查看>>
串口,网口,USB端口的选择
查看>>
软件测试人员需不需要懂代码
查看>>
网站提示:Bad Request(Invalid Hostname)错误分析
查看>>
初识关系型数据库(SQL)与非关系型数据库(NOSQL)
查看>>
AndEngine 环境配置出错解决
查看>>
传统的Ado.net 参数设置:params SqlParameter[] commandParameters
查看>>
解决miner.start() 返回null
查看>>