Uses of Class
org.redisson.config.Config
-
Packages that use Config Package Description org.redisson org.redisson.api org.redisson.cluster org.redisson.codec org.redisson.config org.redisson.connection org.redisson.jcache.configuration -
-
Uses of Config in org.redisson
Fields in org.redisson declared as Config Modifier and Type Field Description protected Config
Redisson. config
Methods in org.redisson that return Config Modifier and Type Method Description Config
Redisson. getConfig()
Config
RedissonReactive. getConfig()
Config
RedissonRx. getConfig()
Methods in org.redisson with parameters of type Config Modifier and Type Method Description static RedissonClient
Redisson. create(Config config)
Create sync/async Redisson instance with provided configstatic RedissonReactiveClient
Redisson. createReactive(Config config)
Deprecated.static RedissonRxClient
Redisson. createRx(Config config)
Deprecated.Constructors in org.redisson with parameters of type Config Constructor Description Redisson(Config config)
RedissonReactive(Config config)
RedissonRx(Config config)
-
Uses of Config in org.redisson.api
Methods in org.redisson.api that return Config Modifier and Type Method Description Config
RedissonClient. getConfig()
Allows to get configuration provided during Redisson instance creation.Config
RedissonReactiveClient. getConfig()
Allows to get configuration provided during Redisson instance creation.Config
RedissonRxClient. getConfig()
Allows to get configuration provided during Redisson instance creation. -
Uses of Config in org.redisson.cluster
Constructors in org.redisson.cluster with parameters of type Config Constructor Description ClusterConnectionManager(ClusterServersConfig cfg, Config config, UUID id)
-
Uses of Config in org.redisson.codec
Methods in org.redisson.codec with parameters of type Config Modifier and Type Method Description <T extends Codec>
TDefaultReferenceCodecProvider. getCodec(REntity anno, Class<?> cls, Config config)
<T extends Codec,K extends RObject>
TDefaultReferenceCodecProvider. getCodec(RObjectField anno, Class<?> cls, Class<K> rObjectClass, String fieldName, Config config)
<T extends Codec>
TReferenceCodecProvider. getCodec(REntity anno, Class<?> cls, Config config)
Get a codec instance by a REntity annotation and the class annotated with it.<T extends Codec,K extends RObject>
TReferenceCodecProvider. getCodec(RObjectField anno, Class<?> cls, Class<K> rObjectClass, String fieldName, Config config)
Get a codec instance by a RObjectField annotation and the class annotated with REntity, the implementation class of RObject the field is going to be transformed into and the name of the field with this RObjectField annotation. -
Uses of Config in org.redisson.config
Subclasses of Config in org.redisson.config Modifier and Type Class Description class
RedissonNodeConfig
Redisson Node configurationclass
RedissonNodeFileConfig
Redisson Node file configurationMethods in org.redisson.config that return Config Modifier and Type Method Description static Config
Config. fromJSON(File file)
Deprecated.static Config
Config. fromJSON(File file, ClassLoader classLoader)
Deprecated.static Config
Config. fromJSON(InputStream inputStream)
Deprecated.static Config
Config. fromJSON(Reader reader)
Deprecated.static Config
Config. fromJSON(String content)
Deprecated.static Config
Config. fromJSON(URL url)
Deprecated.static Config
Config. fromYAML(File file)
Read config object stored in YAML format fromFile
static Config
Config. fromYAML(File file, ClassLoader classLoader)
static Config
Config. fromYAML(InputStream inputStream)
Read config object stored in YAML format fromInputStream
static Config
Config. fromYAML(Reader reader)
Read config object stored in YAML format fromReader
static Config
Config. fromYAML(String content)
Read config object stored in YAML format fromString
static Config
Config. fromYAML(URL url)
Read config object stored in YAML format fromURL
Config
Config. setAddressResolverGroupFactory(AddressResolverGroupFactory addressResolverGroupFactory)
Used to switch betweenDnsAddressResolverGroup
implementations.Config
Config. setCleanUpKeysAmount(int cleanUpKeysAmount)
Defines expired keys amount deleted per single operation during clean up process of expired entries.Config
Config. setCodec(Codec codec)
Redis data codec.Config
Config. setConnectionListener(ConnectionListener connectionListener)
Sets connection listener which is triggered when Redisson connected/disconnected to Redis serverConfig
Config. setEventLoopGroup(io.netty.channel.EventLoopGroup eventLoopGroup)
Use external EventLoopGroup.Config
Config. setExecutor(ExecutorService executor)
Use external ExecutorService.Config
Config. setKeepPubSubOrder(boolean keepPubSubOrder)
Defines whether to keep PubSub messages handling in arrival order or handle messages concurrently.Config
Config. setLockWatchdogTimeout(long lockWatchdogTimeout)
This parameter is only used if lock has been acquired without leaseTimeout parameter definition.Config
Config. setMaxCleanUpDelay(int maxCleanUpDelay)
Defines maximum delay in seconds for clean up process of expired entries.Config
Config. setMinCleanUpDelay(int minCleanUpDelay)
Defines minimum delay in seconds for clean up process of expired entries.Config
Config. setNettyHook(NettyHook nettyHook)
Netty hook applied to Netty Bootstrap and Channel objects.Config
Config. setNettyThreads(int nettyThreads)
Threads amount shared between all redis clients used by Redisson.Config
Config. setReliableTopicWatchdogTimeout(long timeout)
Reliable Topic subscriber expires aftertimeout
if watchdog didn't extend it to nexttimeout
time interval.Config
Config. setThreads(int threads)
Threads amount shared across all listeners ofRTopic
object, invocation handlers ofRRemoteService
object andRExecutorService
tasks.Config
Config. setTransportMode(TransportMode transportMode)
Transport modeConfig
Config. setUseScriptCache(boolean useScriptCache)
Defines whether to use Lua-script cache on Redis side.Config
Config. setUseThreadClassLoader(boolean useThreadClassLoader)
Defines whether to supply Thread ContextClassLoader to Codec.Methods in org.redisson.config with parameters of type Config Modifier and Type Method Description static ConnectionManager
ConfigSupport. createConnectionManager(Config configCopy)
String
ConfigSupport. toJSON(Config config)
String
ConfigSupport. toYAML(Config config)
Constructors in org.redisson.config with parameters of type Config Constructor Description Config(Config oldConf)
RedissonNodeConfig(Config oldConf)
RedissonNodeFileConfig(Config oldConf)
-
Uses of Config in org.redisson.connection
Methods in org.redisson.connection that return Config Modifier and Type Method Description Config
ConnectionManager. getCfg()
Config
MasterSlaveConnectionManager. getCfg()
Constructors in org.redisson.connection with parameters of type Config Constructor Description MasterSlaveConnectionManager(Config cfg, UUID id)
MasterSlaveConnectionManager(MasterSlaveServersConfig cfg, Config config, UUID id)
ReplicatedConnectionManager(ReplicatedServersConfig cfg, Config config, UUID id)
SentinelConnectionManager(SentinelServersConfig cfg, Config config, UUID id)
SingleConnectionManager(SingleServerConfig cfg, Config config, UUID id)
-
Uses of Config in org.redisson.jcache.configuration
Methods in org.redisson.jcache.configuration that return Config Modifier and Type Method Description Config
RedissonConfiguration. getConfig()
Methods in org.redisson.jcache.configuration with parameters of type Config Modifier and Type Method Description static <K,V>
javax.cache.configuration.Configuration<K,V>RedissonConfiguration. fromConfig(Config config)
static <K,V>
javax.cache.configuration.Configuration<K,V>RedissonConfiguration. fromConfig(Config config, javax.cache.configuration.Configuration<K,V> jcacheConfig)
-