本文实例讲述了java使用redis的方法。分享给大家供大家参考,具体如下:
安装
开始在 java 中使用 redis 前, 我们需要确保已经安装了 redis 服务及 java redis 驱动,且你的机器上能正常使用 java。 java的安装配置可以参考我们的 java开发环境配置 接下来让我们安装 java redis 驱动:
首先你需要下载驱动包,确保下载最新驱动包。
在你的classpath中包含该驱动包。
连接到 redis 服务
1
2
3
4
5
6
7
8
9
10
|
import redis.clients.jedis.jedis;
public class redisjava {
public static void main(string[] args) {
//连接本地的 redis 服务
jedis jedis = new jedis( "localhost" );
system.out.println( "connection to server sucessfully" );
//查看服务是否运行
system.out.println( "server is running: " +jedis.ping());
}
}
|
编译以上 java 程序,确保驱动包的路径是正确的。
$javac redisjava.java
$java redisjava
connection to server sucessfully
server is running: pong
redis java string example
redis java string(字符串) 实例
1
2
3
4
5
6
7
8
9
10
11
12
|
import redis.clients.jedis.jedis;
public class redisstringjava {
public static void main(string[] args) {
//连接本地的 redis 服务
jedis jedis = new jedis( "localhost" );
system.out.println( "connection to server sucessfully" );
//设置 redis 字符串数据
jedis.set( "w3ckey" , "redis tutorial" );
// 获取存储的数据并输出
system.out.println( "stored string in redis:: " + jedis.get( "w3ckey" ));
}
}
|
编译以上程序
$javac redisstringjava.java
$java redisstringjava
connection to server sucessfully
stored string in redis:: redis tutorial
redis java list(列表) 实例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import redis.clients.jedis.jedis;
public class redislistjava {
public static void main(string[] args) {
//连接本地的 redis 服务
jedis jedis = new jedis( "localhost" );
system.out.println( "connection to server sucessfully" );
//存储数据到列表中
jedis.lpush( "tutorial-list" , "redis" );
jedis.lpush( "tutorial-list" , "mongodb" );
jedis.lpush( "tutorial-list" , "mysql" );
// 获取存储的数据并输出
list<string> list = jedis.lrange( "tutorial-list" , 0 , 5 );
for ( int i= 0 ; i<list.size(); i++) {
system.out.println( "stored string in redis:: " +list.get(i));
}
}
}
|
编译以上程序
$javac redislistjava.java
$java redislistjava
connection to server sucessfully
stored string in redis:: redis
stored string in redis:: mongodb
stored string in redis:: mysql
redis java keys 实例
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import redis.clients.jedis.jedis;
public class rediskeyjava {
public static void main(string[] args) {
//连接本地的 redis 服务
jedis jedis = new jedis( "localhost" );
system.out.println( "connection to server sucessfully" );
// 获取数据并输出
list<string> list = jedis.keys( "*" );
for ( int i= 0 ; i<list.size(); i++) {
system.out.println( "list of stored keys:: " +list.get(i));
}
}
}
|
编译以上程序
$javac rediskeyjava.java
$java rediskeyjava
connection to server sucessfully
list of stored keys:: tutorial-name
list of stored keys:: tutorial-list
希望本文所述对大家java程序设计有所帮助。
原文链接:http://www.cnblogs.com/chunguang/p/5651942.html