B C D E G I K N P R S T U V 
All Classes All Packages

B

build(Set<String>, RedisCachesBuildTimeConfig, RedisCachesConfig, Map<String, String>) - Static method in class io.quarkus.cache.redis.runtime.RedisCacheInfoBuilder
 

C

cachesConfig - Variable in class io.quarkus.cache.redis.runtime.RedisCachesBuildTimeConfig
Additional configuration applied to a specific Redis cache (highest precedence)
cachesConfig - Variable in class io.quarkus.cache.redis.runtime.RedisCachesConfig
Additional configuration applied to a specific Redis cache (highest precedence)
clientName - Variable in class io.quarkus.cache.redis.runtime.RedisCachesBuildTimeConfig
The name of the named Redis client to be used for communicating with Redis.
computeActualKey(String) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
computeUserKey(String) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 

D

defaultConfig - Variable in class io.quarkus.cache.redis.runtime.RedisCachesBuildTimeConfig
Default configuration applied to all Redis caches (lowest precedence)
defaultConfig - Variable in class io.quarkus.cache.redis.runtime.RedisCachesConfig
Default configuration applied to all Redis caches (lowest precedence)

E

expireAfterAccess - Variable in class io.quarkus.cache.redis.runtime.RedisCacheInfo
The default time to live of the item stored in the cache
expireAfterAccess - Variable in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the last access of its value.
expireAfterWrite - Variable in class io.quarkus.cache.redis.runtime.RedisCacheInfo
The default time to live to add to the item once read
expireAfterWrite - Variable in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig
Specifies that each entry should be automatically removed from the cache once a fixed duration has elapsed after the entry's creation, or the most recent replacement of its value.

G

get(K, Class<V>, Function<K, V>) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
Allows retrieving a value from the Redis cache.
get(K, Class<V>, Function<K, V>) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
get(K, Function<K, V>) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
 
get_cachesConfig(Object) - Static method in class io.quarkus.cache.redis.runtime.RedisCachesConfig$$accessor
 
get_expireAfterAccess(Object) - Static method in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig$$accessor
 
get_expireAfterWrite(Object) - Static method in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig$$accessor
 
getAsync(K, Class<V>, Function<K, Uni<V>>) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
Allows retrieving a value from the Redis cache.
getAsync(K, Class<V>, Function<K, Uni<V>>) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
getAsync(K, Function<K, Uni<V>>) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
 
getCacheManagerSupplier() - Method in class io.quarkus.cache.redis.runtime.RedisCacheBuildRecorder
 
getDefaultKey() - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
getDefaultValueType() - Method in interface io.quarkus.cache.redis.runtime.RedisCache
When configured, gets the default type of the value stored in the cache.
getDefaultValueType() - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
getName() - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
getOrDefault(K, V) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
 
getOrDefault(K, V) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
getOrNull(K, Class<V>) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
 
getOrNull(K, Class<V>) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 

I

invalidate(Object) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
invalidateAll() - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
invalidateIf(Predicate<Object>) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
io.quarkus.cache.redis.runtime - package io.quarkus.cache.redis.runtime
 

K

keyType - Variable in class io.quarkus.cache.redis.runtime.RedisCacheBuildTimeConfig
The key type, String by default.
keyType - Variable in class io.quarkus.cache.redis.runtime.RedisCacheInfo
The key type, String by default.

N

name - Variable in class io.quarkus.cache.redis.runtime.RedisCacheInfo
The cache name

P

prefix - Variable in class io.quarkus.cache.redis.runtime.RedisCacheInfo
the key prefix allowing to identify the keys belonging to the cache.
prefix - Variable in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig
the key prefix allowing to identify the keys belonging to the cache.
put(K, Supplier<V>) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
 
put(K, Supplier<V>) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
put(K, V) - Method in interface io.quarkus.cache.redis.runtime.RedisCache
Put a value in the cache.
put(K, V) - Method in class io.quarkus.cache.redis.runtime.RedisCacheImpl
 

R

RedisCache - Interface in io.quarkus.cache.redis.runtime
 
RedisCacheBuildRecorder - Class in io.quarkus.cache.redis.runtime
 
RedisCacheBuildRecorder(RedisCachesBuildTimeConfig, RuntimeValue<RedisCachesConfig>) - Constructor for class io.quarkus.cache.redis.runtime.RedisCacheBuildRecorder
 
RedisCacheBuildTimeConfig - Class in io.quarkus.cache.redis.runtime
 
RedisCacheBuildTimeConfig() - Constructor for class io.quarkus.cache.redis.runtime.RedisCacheBuildTimeConfig
 
RedisCacheImpl - Class in io.quarkus.cache.redis.runtime
This class is an internal Quarkus cache implementation using Redis.
RedisCacheImpl(RedisCacheInfo, Vertx, Redis, Supplier<Boolean>) - Constructor for class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
RedisCacheImpl(RedisCacheInfo, Optional<String>) - Constructor for class io.quarkus.cache.redis.runtime.RedisCacheImpl
 
RedisCacheInfo - Class in io.quarkus.cache.redis.runtime
 
RedisCacheInfo() - Constructor for class io.quarkus.cache.redis.runtime.RedisCacheInfo
 
RedisCacheInfoBuilder - Class in io.quarkus.cache.redis.runtime
 
RedisCacheInfoBuilder() - Constructor for class io.quarkus.cache.redis.runtime.RedisCacheInfoBuilder
 
RedisCacheRuntimeConfig - Class in io.quarkus.cache.redis.runtime
 
RedisCacheRuntimeConfig() - Constructor for class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig
 
RedisCacheRuntimeConfig$$accessor - Class in io.quarkus.cache.redis.runtime
 
RedisCachesBuildTimeConfig - Class in io.quarkus.cache.redis.runtime
 
RedisCachesBuildTimeConfig() - Constructor for class io.quarkus.cache.redis.runtime.RedisCachesBuildTimeConfig
 
RedisCachesConfig - Class in io.quarkus.cache.redis.runtime
 
RedisCachesConfig() - Constructor for class io.quarkus.cache.redis.runtime.RedisCachesConfig
 
RedisCachesConfig$$accessor - Class in io.quarkus.cache.redis.runtime
 

S

set_cachesConfig(Object, Object) - Static method in class io.quarkus.cache.redis.runtime.RedisCachesConfig$$accessor
 
set_expireAfterAccess(Object, Object) - Static method in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig$$accessor
 
set_expireAfterWrite(Object, Object) - Static method in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig$$accessor
 
setCacheValueTypes(Map<String, String>) - Method in class io.quarkus.cache.redis.runtime.RedisCacheBuildRecorder
 

T

ttl - Variable in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig

U

useOptimisticLocking - Variable in class io.quarkus.cache.redis.runtime.RedisCacheInfo
Whether the access to the cache should be using optimistic locking See Redis Optimistic Locking for details.
useOptimisticLocking - Variable in class io.quarkus.cache.redis.runtime.RedisCacheRuntimeConfig
Whether the access to the cache should be using optimistic locking.

V

valueType - Variable in class io.quarkus.cache.redis.runtime.RedisCacheBuildTimeConfig
The default type of the value stored in the cache.
valueType - Variable in class io.quarkus.cache.redis.runtime.RedisCacheInfo
The default type of the value stored in the cache.
B C D E G I K N P R S T U V 
All Classes All Packages