From 38ce98642e97df2d2d2daf1cabf54c49175d4e54 Mon Sep 17 00:00:00 2001 From: Karel Cemus Date: Mon, 11 Dec 2023 23:12:55 +0100 Subject: [PATCH] Documentation updated to version 3.0.0-M1 --- CHANGELOG.md | 5 +++++ README.md | 40 ++++++++++++++++++++-------------------- doc/10-integration.md | 2 +- doc/20-configuration.md | 2 +- doc/40-migration.md | 4 ++-- 5 files changed, 29 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05b41ae..1631228 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ ## Changelog +### [:link: 3.0.0](https://github.com/KarelCemus/play-redis/tree/3.0.0-M1) + +Updated to Play `2.9.0` and dropped `Scala 2.12` since it was discontinued from the Play framework. +Minimal supported Java version is now `11`. [#265](https://github.com/KarelCemus/play-redis/pull/265) + ### [:link: 2.7.0](https://github.com/KarelCemus/play-redis/tree/2.7.0) SET command supports milliseconds, previous versions used seconds [#247](https://github.com/KarelCemus/play-redis/issues/247) diff --git a/README.md b/README.md index f52b50d..24f10bd 100644 --- a/README.md +++ b/README.md @@ -36,22 +36,22 @@ as well as on your premise. - [synchronous and asynchronous APIs](#provided-apis) - [implements standard APIs defined by Play's `cacheApi` project](#provided-apis) -- support of [named caches](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#named-caches) -- [works with Guice](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/40-migration.md#runtime-time-dependency-injection) as well as [compile-time DI](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/40-migration.md#compile-time-dependency-injection) -- [getOrElse and getOrFuture operations](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/30-how-to-use.md#use-of-cacheapi) easing the use -- [wildcards in remove operation](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/30-how-to-use.md#use-of-cacheapi) -- support of collections: [sets](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/30-how-to-use.md#use-of-sets), [lists](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/30-how-to-use.md#use-of-lists), and [maps](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/30-how-to-use.md#use-of-maps) -- [increment and decrement operations](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/30-how-to-use.md#use-of-cacheapi) -- [eager and lazy invocation policies](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#eager-and-lazy-invocation) waiting or not waiting for the result -- several [recovery policies](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#recovery-policy) and possibility of further customization -- support of [several configuration sources](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#running-in-different-environments) +- support of [named caches](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#named-caches) +- [works with Guice](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/40-migration.md#runtime-time-dependency-injection) as well as [compile-time DI](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/40-migration.md#compile-time-dependency-injection) +- [getOrElse and getOrFuture operations](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/30-how-to-use.md#use-of-cacheapi) easing the use +- [wildcards in remove operation](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/30-how-to-use.md#use-of-cacheapi) +- support of collections: [sets](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/30-how-to-use.md#use-of-sets), [lists](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/30-how-to-use.md#use-of-lists), and [maps](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/30-how-to-use.md#use-of-maps) +- [increment and decrement operations](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/30-how-to-use.md#use-of-cacheapi) +- [eager and lazy invocation policies](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#eager-and-lazy-invocation) waiting or not waiting for the result +- several [recovery policies](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#recovery-policy) and possibility of further customization +- support of [several configuration sources](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#running-in-different-environments) - static in the configuration file - from the connection string optionally in the environmental variable - custom implementation of the configuration provider -- support of [standalone, cluster,](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#standalone-vs-cluster) - [aws-cluster,](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#aws-cluster) - and [sentinel modes](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#sentinel) -- build on the top of Akka actors and serializers, [agnostic to the serialization mechanism](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#limitation-of-data-serialization) +- support of [standalone, cluster,](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#standalone-vs-cluster) + [aws-cluster,](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#aws-cluster) + and [sentinel modes](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#sentinel) +- build on the top of Akka actors and serializers, [agnostic to the serialization mechanism](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#limitation-of-data-serialization) - for simplicity, it uses deprecated Java serialization by default - it is recommended to use [Kryo library](https://github.com/romix/akka-kryo-serialization) or any other mechanism @@ -92,11 +92,11 @@ or you can use shortcuts in the table below. To use this module: -1. [Add this library into your project](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/10-integration.md) and expose APIs -1. See the [configuration options](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md) -1. [Browse examples of use](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/30-how-to-use.md) +1. [Add this library into your project](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/10-integration.md) and expose APIs +1. See the [configuration options](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md) +1. [Browse examples of use](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/30-how-to-use.md) -If you come from older version, you might check the [Migration Guide](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/40-migration.md) +If you come from older version, you might check the [Migration Guide](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/40-migration.md) ## Samples @@ -124,7 +124,7 @@ To your SBT `build.sbt` add the following lines: // enable Play cache API (based on your Play version) libraryDependencies += play.sbt.PlayImport.cacheApi // include play-redis library -libraryDependencies += "com.github.karelcemus" %% "play-redis" % "2.7.0" +libraryDependencies += "com.github.karelcemus" %% "play-redis" % "3.0.0-M1" ``` @@ -132,7 +132,7 @@ libraryDependencies += "com.github.karelcemus" %% "play-redis" % "2.7.0" | play framework | play-redis | documentation | |----------------|---------------------------------:|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------:| -| 2.9.x | 3.0.0 | [see here](https://github.com/KarelCemus/play-redis/blob/3.0.0/README.md) | +| 2.9.x | 3.0.0-M1 | [see here](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/README.md) | | 2.8.x | 2.7.0 | [see here](https://github.com/KarelCemus/play-redis/blob/2.7.0/README.md) | | 2.7.x | 2.5.1 | [see here](https://github.com/KarelCemus/play-redis/blob/2.5.1/README.md) | | 2.6.x | 2.3.0 | [see here](https://github.com/KarelCemus/play-redis/blob/2.3.0/README.md) ([Migration Guide](https://github.com/KarelCemus/play-redis/blob/2.3.0/doc/40-migration.md)) | @@ -150,7 +150,7 @@ like this library, please feel free to report it or contact me. ## Changelog For the list of changes and migration guide please see -[the Changelog](https://github.com/KarelCemus/play-redis/blob/2.7.0/CHANGELOG.md). +[the Changelog](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/CHANGELOG.md). ## Caveat diff --git a/doc/10-integration.md b/doc/10-integration.md index fb0f2df..5051aed 100644 --- a/doc/10-integration.md +++ b/doc/10-integration.md @@ -9,7 +9,7 @@ Although the use of runtime-time injection is preferred, both options are equal // enable Play cache API (based on your Play version) libraryDependencies += play.sbt.PlayImport.cacheApi // include play-redis library -libraryDependencies += "com.github.karelcemus" %% "play-redis" % "2.7.0" +libraryDependencies += "com.github.karelcemus" %% "play-redis" % "3.0.0-M1" ``` diff --git a/doc/20-configuration.md b/doc/20-configuration.md index e7c459e..c288e98 100644 --- a/doc/20-configuration.md +++ b/doc/20-configuration.md @@ -1,6 +1,6 @@ # Configuration -Default configuration and very detailed manual is available in [reference.conf](https://github.com/KarelCemus/play-redis/blob/2.7.0/src/main/resources/reference.conf). It can be overwritten in your `conf/application.conf` file. +Default configuration and very detailed manual is available in [reference.conf](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/src/main/resources/reference.conf). It can be overwritten in your `conf/application.conf` file. There are several features supported in the configuration, they are discussed below. However, by default, there is no need for any further configuration. Default settings are set to the standalone instance running on `localhost:6379?db=0`, which is default for redis server. This instance is named `play` but is also exposed as a default implementation. diff --git a/doc/40-migration.md b/doc/40-migration.md index 24bcbf5..3c66f90 100644 --- a/doc/40-migration.md +++ b/doc/40-migration.md @@ -25,7 +25,7 @@ changes in public API, which needs your code to be updated. The invocation policy in `2.0.x` was used as an implicit parameter. Since `2.1.x` it is a static configurable property inside the instance configuration. -See the [updated documentation for more details](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#eager-and-lazy-invocation). +See the [updated documentation for more details](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#eager-and-lazy-invocation). ### Named caches uses @NamedCache instead of @Named @@ -39,7 +39,7 @@ Since `2.1.0`, there is a new `redis-timeout` property. To avoid ambiguity, the original `timeout` property was renamed to `sync-redis`. The `timeout` property was deprecated any will be removed in `2.2.0`. -See the updated [documentation for more details](https://github.com/KarelCemus/play-redis/blob/2.7.0/doc/20-configuration.md#eager-and-lazy-invocation). +See the updated [documentation for more details](https://github.com/KarelCemus/play-redis/blob/3.0.0-M1/doc/20-configuration.md#eager-and-lazy-invocation). ## Migration from 1.6.x to 2.0.x