Fix cache option defaults in help (#22708)
Closes #22707 Co-authored-by: Stian Thorgersen <stianst@gmail.com>
This commit is contained in:
parent
4387dd7123
commit
1811c39632
11 changed files with 52 additions and 42 deletions
|
@ -12,8 +12,8 @@ public class CachingOptions {
|
|||
public static final Option CACHE = new OptionBuilder<>("cache", Mechanism.class)
|
||||
.category(OptionCategory.CACHE)
|
||||
.description("Defines the cache mechanism for high-availability. "
|
||||
+ "By default, a 'ispn' cache is used to create a cluster between multiple server nodes. "
|
||||
+ "A 'local' cache disables clustering and is intended for development and testing purposes.")
|
||||
+ "By default in production mode, a 'ispn' cache is used to create a cluster between multiple server nodes. "
|
||||
+ "By default in development mode, a 'local' cache disables clustering and is intended for development and testing purposes.")
|
||||
.defaultValue(Mechanism.ispn)
|
||||
.buildTime(true)
|
||||
.build();
|
||||
|
|
|
@ -18,10 +18,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -18,10 +18,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -16,10 +16,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -16,10 +16,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -16,10 +16,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -16,10 +16,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -22,10 +22,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -22,10 +22,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -22,10 +22,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
|
@ -22,10 +22,11 @@ Options:
|
|||
|
||||
Cache:
|
||||
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default, a 'ispn' cache
|
||||
is used to create a cluster between multiple server nodes. A 'local' cache
|
||||
disables clustering and is intended for development and testing purposes.
|
||||
Possible values are: ispn, local. Default: ispn.
|
||||
--cache <type> Defines the cache mechanism for high-availability. By default in production
|
||||
mode, a 'ispn' cache is used to create a cluster between multiple server
|
||||
nodes. By default in development mode, a 'local' cache disables clustering
|
||||
and is intended for development and testing purposes. Possible values are:
|
||||
ispn, local. Default: ispn.
|
||||
--cache-config-file <file>
|
||||
Defines the file from which cache configuration should be loaded from. The
|
||||
configuration file is relative to the 'conf/' directory.
|
||||
|
|
Loading…
Reference in a new issue