您的位置:首页 > 数据库 > Redis

redis安装与java api jedis

2015-12-13 16:23 711 查看
redis 安装(ubuntu14.04.3 64位机环境下)

1.root用户下,更新系统apt-get update

2.下载redis后,进入下载目录,执行如下操作

$tar xzf redis-3.0.5.tar.gz

$cd redis-3.0.5

$make

$src/redis-server

在另一个终端

$src/redis-cli

$set foo bar

$get foo

安装参考:http://redis.io/download
http://www.cnblogs.com/super-d2/p/3819385.html http://blog.csdn.net/kkdelta/article/details/7217761 http://www.yiibai.com/redis/redis_quick_guide.html
java api jedis参考

简单参考:https://github.com/xetorthio/jedis
http://www.oschina.net/p/jedis?fromerr=bXqoeJZG
JedisPool参考
https://github.com/xetorthio/jedis/wiki/Getting-started http://www.cnblogs.com/liuling/p/2014-4-19-04.html https://github.com/xetorthio/jedis/wiki/Getting-started

jedis使用工程下载地址
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: