├── .github └── workflows │ ├── build-test.yml │ └── publish.yml ├── .gitignore ├── .scalafix.conf ├── .scalafmt.conf ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── doc ├── 10-integration.md ├── 20-configuration.md ├── 30-how-to-use.md ├── 40-migration.md └── images │ ├── redis-settings.png │ └── redis-settings.xml ├── docker ├── master-slave │ └── docker-compose.yml └── sentinel │ └── docker-compose.yml ├── project ├── CustomReleasePlugin.scala ├── DocumentationUpdate.scala ├── ReleaseUtilities.scala ├── build.properties └── plugins.sbt └── src ├── main ├── java │ └── play │ │ └── cache │ │ └── redis │ │ ├── AsyncCacheApi.java │ │ ├── AsyncRedisList.java │ │ ├── AsyncRedisMap.java │ │ ├── AsyncRedisSet.java │ │ └── KeyValue.java ├── resources │ └── reference.conf ├── scala-2.13 │ └── RedisSetJavaImpl.scala ├── scala-3 │ └── play │ │ └── api │ │ └── cache │ │ └── redis │ │ └── impl │ │ └── RedisSetJavaImpl.scala └── scala │ └── play │ └── api │ └── cache │ └── redis │ ├── CacheApi.scala │ ├── Expiration.scala │ ├── JavaCompatibilityBase.scala │ ├── RecoveryPolicy.scala │ ├── RedisCacheComponents.scala │ ├── RedisCacheModule.scala │ ├── RedisCollection.scala │ ├── RedisList.scala │ ├── RedisMap.scala │ ├── RedisSet.scala │ ├── RedisSortedSet.scala │ ├── configuration │ ├── Equals.scala │ ├── HostnameResolver.scala │ ├── RedisConfigLoader.scala │ ├── RedisHost.scala │ ├── RedisInstance.scala │ ├── RedisInstanceManager.scala │ ├── RedisInstanceProvider.scala │ ├── RedisSettings.scala │ ├── RedisSslSettings.scala │ ├── RedisThreadPools.scala │ ├── RedisTimeouts.scala │ └── RedisUriSslSettings.scala │ ├── connector │ ├── ExpectedFuture.scala │ ├── PekkoSerializer.scala │ ├── RedisClientFactory.scala │ ├── RedisCommands.scala │ ├── RedisConnection.scala │ ├── RedisConnector.scala │ ├── RedisConnectorImpl.scala │ ├── RedisConnectorProvider.scala │ ├── RedisRuntime.scala │ └── package.scala │ ├── exceptions.scala │ ├── impl │ ├── AsyncJavaRedis.scala │ ├── AsyncRedisImpl.scala │ ├── Builders.scala │ ├── InvocationPolicy.scala │ ├── JavaCompatibility.scala │ ├── RedisCache.scala │ ├── RedisCaches.scala │ ├── RedisListImpl.scala │ ├── RedisListJavaImpl.scala │ ├── RedisMapImpl.scala │ ├── RedisMapJavaImpl.scala │ ├── RedisPrefix.scala │ ├── RedisRuntime.scala │ ├── RedisSetImpl.scala │ ├── RedisSortedSetImpl.scala │ ├── SyncRedis.scala │ └── dsl.scala │ └── package.scala └── test ├── java └── play │ └── api │ └── cache │ └── redis │ ├── JavaTypes.java │ └── connector │ └── AbstractRedisCommandsMock.java ├── resources ├── logback.xml └── reference.conf └── scala └── play └── api └── cache └── redis ├── ExpirationSpec.scala ├── RecoveryPolicySpec.scala ├── RedisCacheComponentsSpec.scala ├── RedisCacheModuleSpec.scala ├── configuration ├── HostnameResolverSpec.scala ├── RedisHostSpec.scala ├── RedisInstanceManagerSpec.scala ├── RedisInstanceProviderSpec.scala ├── RedisSslSettingsSpec.scala ├── RedisThreadPoolsSpec.scala ├── RedisTimeoutsSpec.scala └── RedisUriSslSettingsSpec.scala ├── connector ├── ExpectedFutureSpec.scala ├── FailEagerlySpec.scala ├── RedisClusterSpec.scala ├── RedisCommandsMock.scala ├── RedisConnectorFailureSpec.scala ├── RedisMasterSlavesSpec.scala ├── RedisRequestTimeoutSpec.scala ├── RedisSentinelSpec.scala ├── RedisStandaloneSpec.scala └── SerializerSpec.scala ├── impl ├── AsyncJavaRedisSpec.scala ├── AsyncRedisMock.scala ├── AsyncRedisSpec.scala ├── BuildersSpec.scala ├── InvocationPolicySpec.scala ├── MockedAsyncRedis.scala ├── RedisCacheSpec.scala ├── RedisConnectorMock.scala ├── RedisJavaListSpec.scala ├── RedisJavaMapSpec.scala ├── RedisJavaSetSpec.scala ├── RedisListJavaMock.scala ├── RedisListSpec.scala ├── RedisMapJavaMock.scala ├── RedisMapSpec.scala ├── RedisPrefixSpec.scala ├── RedisRuntimeMock.scala ├── RedisRuntimeSpec.scala ├── RedisSetJavaMock.scala ├── RedisSetSpec.scala ├── RedisSortedSetSpec.scala └── SyncRedisSpec.scala └── test ├── BaseSpec.scala ├── DefaultInjector.scala ├── FakeApplication.scala ├── ForAllTestContainer.scala ├── Helpers.scala ├── OrElseProbe.scala ├── RedisClusterContainer.scala ├── RedisContainer.scala ├── RedisContainerConfig.scala ├── RedisLogger.scala ├── RedisMasterSlaveContainer.scala ├── RedisSentinelContainer.scala ├── RedisSettingsTest.scala ├── RedisStandaloneContainer.scala ├── SimulatedException.scala └── TestApplication.scala /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.scalafix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/.scalafix.conf -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/README.md -------------------------------------------------------------------------------- /doc/10-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/doc/10-integration.md -------------------------------------------------------------------------------- /doc/20-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/doc/20-configuration.md -------------------------------------------------------------------------------- /doc/30-how-to-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/doc/30-how-to-use.md -------------------------------------------------------------------------------- /doc/40-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/doc/40-migration.md -------------------------------------------------------------------------------- /doc/images/redis-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/doc/images/redis-settings.png -------------------------------------------------------------------------------- /doc/images/redis-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/doc/images/redis-settings.xml -------------------------------------------------------------------------------- /docker/master-slave/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/docker/master-slave/docker-compose.yml -------------------------------------------------------------------------------- /docker/sentinel/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/docker/sentinel/docker-compose.yml -------------------------------------------------------------------------------- /project/CustomReleasePlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/project/CustomReleasePlugin.scala -------------------------------------------------------------------------------- /project/DocumentationUpdate.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/project/DocumentationUpdate.scala -------------------------------------------------------------------------------- /project/ReleaseUtilities.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/project/ReleaseUtilities.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.8 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/java/play/cache/redis/AsyncCacheApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/java/play/cache/redis/AsyncCacheApi.java -------------------------------------------------------------------------------- /src/main/java/play/cache/redis/AsyncRedisList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/java/play/cache/redis/AsyncRedisList.java -------------------------------------------------------------------------------- /src/main/java/play/cache/redis/AsyncRedisMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/java/play/cache/redis/AsyncRedisMap.java -------------------------------------------------------------------------------- /src/main/java/play/cache/redis/AsyncRedisSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/java/play/cache/redis/AsyncRedisSet.java -------------------------------------------------------------------------------- /src/main/java/play/cache/redis/KeyValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/java/play/cache/redis/KeyValue.java -------------------------------------------------------------------------------- /src/main/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/resources/reference.conf -------------------------------------------------------------------------------- /src/main/scala-2.13/RedisSetJavaImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala-2.13/RedisSetJavaImpl.scala -------------------------------------------------------------------------------- /src/main/scala-3/play/api/cache/redis/impl/RedisSetJavaImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala-3/play/api/cache/redis/impl/RedisSetJavaImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/CacheApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/CacheApi.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/Expiration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/Expiration.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/JavaCompatibilityBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/JavaCompatibilityBase.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RecoveryPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RecoveryPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RedisCacheComponents.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RedisCacheComponents.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RedisCacheModule.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RedisCacheModule.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RedisCollection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RedisCollection.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RedisList.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RedisList.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RedisMap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RedisMap.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RedisSet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RedisSet.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/RedisSortedSet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/RedisSortedSet.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/Equals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/Equals.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/HostnameResolver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/HostnameResolver.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisConfigLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisConfigLoader.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisHost.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisHost.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisInstance.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisInstance.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisInstanceManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisInstanceManager.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisInstanceProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisInstanceProvider.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisSettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisSettings.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisSslSettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisSslSettings.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisThreadPools.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisThreadPools.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisTimeouts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisTimeouts.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/configuration/RedisUriSslSettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/configuration/RedisUriSslSettings.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/ExpectedFuture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/ExpectedFuture.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/PekkoSerializer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/PekkoSerializer.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/RedisClientFactory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/RedisClientFactory.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/RedisCommands.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/RedisCommands.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/RedisConnection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/RedisConnection.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/RedisConnector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/RedisConnector.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/RedisConnectorImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/RedisConnectorImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/RedisConnectorProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/RedisConnectorProvider.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/RedisRuntime.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/RedisRuntime.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/connector/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/connector/package.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/exceptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/exceptions.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/AsyncJavaRedis.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/AsyncJavaRedis.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/AsyncRedisImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/AsyncRedisImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/Builders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/Builders.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/InvocationPolicy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/InvocationPolicy.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/JavaCompatibility.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/JavaCompatibility.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisCache.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisCaches.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisCaches.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisListImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisListImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisListJavaImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisListJavaImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisMapImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisMapImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisMapJavaImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisMapJavaImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisPrefix.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisPrefix.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisRuntime.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisRuntime.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisSetImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisSetImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/RedisSortedSetImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/RedisSortedSetImpl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/SyncRedis.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/SyncRedis.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/impl/dsl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/impl/dsl.scala -------------------------------------------------------------------------------- /src/main/scala/play/api/cache/redis/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/main/scala/play/api/cache/redis/package.scala -------------------------------------------------------------------------------- /src/test/java/play/api/cache/redis/JavaTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/java/play/api/cache/redis/JavaTypes.java -------------------------------------------------------------------------------- /src/test/java/play/api/cache/redis/connector/AbstractRedisCommandsMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/java/play/api/cache/redis/connector/AbstractRedisCommandsMock.java -------------------------------------------------------------------------------- /src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/resources/logback.xml -------------------------------------------------------------------------------- /src/test/resources/reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/resources/reference.conf -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/ExpirationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/ExpirationSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/RecoveryPolicySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/RecoveryPolicySpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/RedisCacheComponentsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/RedisCacheComponentsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/RedisCacheModuleSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/RedisCacheModuleSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/HostnameResolverSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/HostnameResolverSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/RedisHostSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/RedisHostSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/RedisInstanceManagerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/RedisInstanceManagerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/RedisInstanceProviderSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/RedisInstanceProviderSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/RedisSslSettingsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/RedisSslSettingsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/RedisThreadPoolsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/RedisThreadPoolsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/RedisTimeoutsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/RedisTimeoutsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/configuration/RedisUriSslSettingsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/configuration/RedisUriSslSettingsSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/ExpectedFutureSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/ExpectedFutureSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/FailEagerlySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/FailEagerlySpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/RedisClusterSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/RedisClusterSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/RedisCommandsMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/RedisCommandsMock.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/RedisConnectorFailureSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/RedisConnectorFailureSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/RedisMasterSlavesSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/RedisMasterSlavesSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/RedisRequestTimeoutSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/RedisRequestTimeoutSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/RedisSentinelSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/RedisSentinelSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/RedisStandaloneSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/RedisStandaloneSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/connector/SerializerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/connector/SerializerSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/AsyncJavaRedisSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/AsyncJavaRedisSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/AsyncRedisMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/AsyncRedisMock.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/AsyncRedisSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/AsyncRedisSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/BuildersSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/BuildersSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/InvocationPolicySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/InvocationPolicySpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/MockedAsyncRedis.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/MockedAsyncRedis.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisCacheSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisCacheSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisConnectorMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisConnectorMock.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisJavaListSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisJavaListSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisJavaMapSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisJavaMapSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisJavaSetSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisJavaSetSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisListJavaMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisListJavaMock.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisListSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisListSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisMapJavaMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisMapJavaMock.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisMapSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisMapSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisPrefixSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisPrefixSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisRuntimeMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisRuntimeMock.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisRuntimeSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisRuntimeSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisSetJavaMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisSetJavaMock.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisSetSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisSetSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/RedisSortedSetSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/RedisSortedSetSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/impl/SyncRedisSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/impl/SyncRedisSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/BaseSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/BaseSpec.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/DefaultInjector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/DefaultInjector.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/FakeApplication.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/FakeApplication.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/ForAllTestContainer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/ForAllTestContainer.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/Helpers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/Helpers.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/OrElseProbe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/OrElseProbe.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisClusterContainer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisClusterContainer.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisContainer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisContainer.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisContainerConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisContainerConfig.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisLogger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisLogger.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisMasterSlaveContainer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisMasterSlaveContainer.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisSentinelContainer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisSentinelContainer.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisSettingsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisSettingsTest.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/RedisStandaloneContainer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/RedisStandaloneContainer.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/SimulatedException.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/SimulatedException.scala -------------------------------------------------------------------------------- /src/test/scala/play/api/cache/redis/test/TestApplication.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KarelCemus/play-redis/HEAD/src/test/scala/play/api/cache/redis/test/TestApplication.scala --------------------------------------------------------------------------------