欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

scala作为 redis client

程序员文章站 2022-05-07 11:38:43
...

我是使用maven 来构建我的scala 项目的因此我需要使用mvn 源 地址如下 http://maven.outofmemory.cn/com.top10/ 然后修改 项目下的pom.xml增加依赖 dependency groupIdcom.top10/groupId artifactIdscala-redis-client_2.10/artifactId version1.13.0/versio

我是使用maven 来构建我的scala 项目的因此我需要使用mvn 源
地址如下
http://maven.outofmemory.cn/com.top10/

然后修改 项目下的pom.xml增加依赖

 com.top10scala-redis-client_2.101.13.0

使用代码如下:
1.引入包
import com.top10.redis._

2. 调用代码

val redis = new SingleRedis("10.10.200.11", 6379)
redis.set(id,id.toString())
println(redis.get(id)+"

更多用法请参看源码
https://github.com/top10/scala-redis-client