play-plugins
play-plugins copied to clipboard
CachePlugin
String Redis cache is using DataInputStream / DataOutputStream readUTF / write UTF for string serialization. This is stepping on Java's inherent limitation of these functions, namely, they use 2 byte...
Can anyone help me with this problem by deserializing my value contained in redis based on the key (being an object)? **Stacktrace:** ``` [warn] application - could not deserialize key:...
Hi, The current version of sedis has a critical bug - it doesn't release broken objects back to the jedis pool correctly. This has the side effect of new calls...
Is there a timeline for the upgrade of statsd to Play 2.4.0?
I'm trying to use Redis Plugin with my Play 2.4 Java application. When I set null value to Redis through Cache API, I get NullPointerException at https://github.com/playframework/play-plugins/blob/0642612c9a1c066b501a5c18aafaaad62d1cad3a/redis/src/main/scala/com/typesafe/play/redis/RedisCacheApi.scala#L88 . Redis Plugin...
Previously, I had a question in here regarding something I was running into. Instead, I am going to post the answer and ask a new question. Using the Redis plugin...
play-modules-redis: compile/publish for scala 2.12.1
In my Play! app, I'm inlcuding the latest version of the plugin: `"com.typesafe" %% "play-plugins-redis" % "2.2.1"` When I do `sbt run` to run my Play app, the following traceback...
I tried to run the redis-plugin following this howto: https://github.com/typesafehub/play-plugins/tree/master/redis#how-to-install What I did: - added to build.sbt: `libraryDependencies += "com.typesafe.play.plugins" %% "play-plugins-redis" % "2.3.1"` - created `play.plugins` in app/conf -...
I'd like to use a redis cache for content caching in my play server. I have a play action that i'm wrapping with the Cached action, i.e. ``` def action(input:...