我正在尝试使用Typesafe Redis Play plugin连接到Redis for Publish-Subscribe。
我有以下测试场景,由每秒生成一次消息的actor组成:
// Initialization happens in Application.scala,
private lazy val fakeStreamActor = Akka.system.actorOf(Props[FakeStreamActor])
val actorPut = Akka.system.scheduler.schedule(
Duration(1000, MILLISECONDS),
Duration(1000, MILLISECONDS),
fakeStreamActor,
Put("This is a sample message"))
演员来源:
class FakeStreamActor extends Actor {
implicit val timeout = Timeout(1, SECONDS)
val CHANNEL = "channel1"
val plugin = Play.application.plugin(classOf[RedisPlugin]).get
val listener = new MyListener()
val pool = plugin.sedisPool
pool.withJedisClient{ client =>
client.subscribe(listener, CHANNEL)
}
def receive = {
case Put(msg: String) => {
//send data to Redis
Logger.info("Push %s".format(msg))
pool.withJedisClient { client =>
client.publish(CHANNEL, msg)
}
}
}
}
/** Messages */
case class Put(msg: String)
订阅者:
case class MyListener() extends JedisPubSub {
def onMessage(channel: String, message: String): Unit = {
Logger.info("onMessage[%s, %s]".format(channel, message))
}
def onSubscribe(channel: String, subscribedChannels: Int): Unit = {
Logger.info("onSubscribe[%s, %d]".format(channel, subscribedChannels))
}
def onUnsubscribe(channel: String, subscribedChannels: Int): Unit = {
Logger.info("onUnsubscribe[%s, %d]".format(channel, subscribedChannels))
}
def onPSubscribe(pattern: String, subscribedChannels: Int): Unit = {
Logger.info("onPSubscribe[%s, %d]".format(pattern, subscribedChannels))
}
def onPUnsubscribe(pattern: String, subscribedChannels: Int): Unit = {
Logger.info("onPUnsubscribe[%s, %d]".format(pattern, subscribedChannels))
}
def onPMessage(pattern: String, channel: String, message: String): Unit = {
Logger.info("onPMessage[%s, %s, %s]".format(pattern, channel, message))
}
}
现在,理想情况下,我应该订阅已定义的频道,并在日志中查看侦听器每秒处理收到的消息的方式。但这不会发生,因为订阅行为锁定了线程。
我的问题是:
有什么方法可以利用Play异步性来进行非阻塞订阅?
答案 0 :(得分:4)
烨。这就是我在Global.scala中的表现:
Akka.future {
val j = new RedisPlugin(app).jedisPool.getResource
j.subscribe(PubSub, "*")
}
我在实例化插件时遇到了麻烦,但你基本上将withJedisClient位放在未来的块中。
感谢您向我展示如何在scala中实例化插件!