Valerii Vlasov

Results 2 comments of Valerii Vlasov

@debasishg it's really easy to reproduce with such simple test snippet ```scala import com.redis.RedisClient object RedisClientTest extends App { val r = new RedisClient("localhost", 6379) println(r.get("vvl:qm")) r.subscribe("vvl.qm") { m =>...

Maybe, it'll help you. If we do such trick ```scala object RedisClientTest extends App { val r = new RedisClient("localhost", 6379) println(s"Get 1 result ${r.get("vvl:qm")}") r.subscribe("vvl.qm") { m => println(s"Subscribe...