play-plugins
play-plugins copied to clipboard
CachePlugin
Is there any way currently setup to inject or override this plugin to use JedisSentinelPool with sentinel? Thanks!
Hi I am trying to configure different Redis instances for different purposes, similar to what you would do with the database configuration but either I am missing something or this...
Multiple tests would fail to get redis resource from redis pool. ``` redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool at redis.clients.util.Pool.getResource(Pool.java:22) at org.sedis.Pool.withJedisClient(sedis.scala:79) at com.typesafe.plugin.RedisPlugin$$anon$1.get(RedisPlugin.scala:173) at play.api.cache.Cache$.get(Cache.scala:77) at...
I'm having difficulty understanding the [scala example for 2.3.x](https://github.com/typesafehub/play-plugins/tree/master/redis#allows-direct-access-to-jedis-and-sedis) at https://github.com/typesafehub/play-plugins/tree/master/redis#allows-direct-access-to-jedis-and-sedis It doesn't appear to be scala code entirely and it seems to be referencing some functions or classes not...
I am able to inject the JedisPool in my controllers but not in models, daos or other classes. An example is in my UserDAO. Isn't this supported or why does...
The readme.md is out of date and causing specifically 2 known issues discussed in the following threads: - https://github.com/typesafehub/play-plugins/issues/156 - https://github.com/typesafehub/play-plugins/issues/157 In summary, in Play 2.4.2, the current readme causes...
Cache API is working correctly when called explicitly (eg. in a method, `Cache.getOrElse(...)`), but not from the `@Cached` annotation. Redis is configured correctly. From the logs: ``` [info] application -...
Hi, I am using play for java 2.4.x. I followed all the steps to step the redis plugin and it worked out pretty well. However, while using the injected dependency...
I am trying to override my redis settings. I have the usual redis.uri string in my application.conf but in a few cases we need to have another password. When I...