键值数据库中Redis的使用是怎样的,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。JDBC—Redis的使用redis的java-jdbc的下
键值数据库中Redis的使用是怎样的,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
JDBC—Redis的使用
redis的java-jdbc的下载地址 : Http://code.Google.com/p/jdbc-redis/
代码例子:插入10万的数据
//连接数据库
Connection conn = DriverManager.getConnection("jdbc:redis://localhost");
//获取Statement
Statement stmt = conn.createStatement();
//执行SQL语句
for(int i=0;i<100000;i++){
stmt.execute("set my_first_key"+i+" my first value"+i);
}
stmt.execute("get my_first_key");
ResultSet r = stmt.getResultSet();
while (r.next()) {
System.out.println(">" + r.getString(0) + "<");
}
}
}
另一段经典的jdbc代码
try {
// 加载redis jdbc驱动
Class.forName("br.com.svvs.jdbc.redis.RedisDriver");
// 连接
conn = DriverManager.getConnection("jdbc:redis://192.168.1.117");
stm = conn.createStatement();
} catch (ClassNotFoundException e) {
System.out.println(e.toString());
} catch (SQLException e) {
System.out.println(e.toString());
}
}
private static void close() {
try {
// rs.close();
stm.close();
conn.close();
} catch (SQLException e) {
System.out.println(e.toString());
}
}
private static void oneKey() throws SQLException {
String sql = "set my_first_key myfirstvalue";
stm.execute(sql);
stm.execute("get my_first_key");
ResultSet rs = stm.getResultSet();
while (rs.next()) {
System.out.println(rs.getString("my_first_key"));
}
close();
}
private static void manyKey() throws SQLException {
stm.execute("lpush mylist value1");
stm.execute("lpush mylist value2");
stm.execute("lpush mylist value3");
stm.execute("lrange mylist 0 -1");
ResultSet rs=stm.getResultSet();
while(rs.next()){
System.out.println(rs.getString("mylist"));
}
}
}
看完上述内容,你们掌握键值数据库中Redis的使用是怎样的的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注编程网数据库频道,感谢各位的阅读!
--结束END--
本文标题: 键值数据库中Redis的使用是怎样的
本文链接: https://lsjlt.com/news/67500.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0