0

看起来 Redis 模块似乎仅适用于 Play 1.x: http ://www.playframework.com/modules/redis

在 Play 2.2 应用程序中使用 Redis 数据库需要什么?

4

1 回答 1

1

它受到支持,并且在一个月前已升级为支持 Play 2.2:

见这里:https ://github.com/typesafehub/play-plugins/blob/master/redis/sample/project/Build.scala

import sbt._
import Keys._

object ApplicationBuild extends Build {

    val appName         = "j"
    val appVersion      = "1.0-SNAPSHOT"

    val appDependencies = Seq(
       "com.typesafe" %% "play-plugins-redis" % "2.2.0",
       "com.typesafe.play" %% "play-cache" % "2.2.0"
    )

    val main = play.Project(appName, appVersion, appDependencies).settings(
      // Add your own project settings here      
    )
}

在这里它说这是一个与 Jedis (Java) 和 Sedis (Scala) 一起使用的插件: https ://github.com/typesafehub/play-plugins/tree/master/redis

所以你可能想使用 Jedis。

于 2013-10-27T16:29:50.767 回答