Uses of Class
io.pebbletemplates.pebble.cache.CacheKey
Packages that use CacheKey
Package
Description
-
Uses of CacheKey in io.pebbletemplates.pebble
Methods in io.pebbletemplates.pebble that return types with arguments of type CacheKeyMethod parameters in io.pebbletemplates.pebble with type arguments of type CacheKeyModifier and TypeMethodDescriptionPebbleEngine.Builder.tagCache(PebbleCache<CacheKey, Object> tagCache) Sets the cache used by the "cache" tag. -
Uses of CacheKey in io.pebbletemplates.pebble.cache.tag
Methods in io.pebbletemplates.pebble.cache.tag with parameters of type CacheKeyModifier and TypeMethodDescriptionCaffeineTagCache.computeIfAbsent(CacheKey key, java.util.function.Function<? super CacheKey, ?> mappingFunction) ConcurrentMapTagCache.computeIfAbsent(CacheKey key, java.util.function.Function<? super CacheKey, ?> mappingFunction) NoOpTagCache.computeIfAbsent(CacheKey key, java.util.function.Function<? super CacheKey, ?> mappingFunction) Method parameters in io.pebbletemplates.pebble.cache.tag with type arguments of type CacheKeyModifier and TypeMethodDescriptionCaffeineTagCache.computeIfAbsent(CacheKey key, java.util.function.Function<? super CacheKey, ?> mappingFunction) ConcurrentMapTagCache.computeIfAbsent(CacheKey key, java.util.function.Function<? super CacheKey, ?> mappingFunction) NoOpTagCache.computeIfAbsent(CacheKey key, java.util.function.Function<? super CacheKey, ?> mappingFunction) Constructor parameters in io.pebbletemplates.pebble.cache.tag with type arguments of type CacheKeyModifierConstructorDescriptionCaffeineTagCache(com.github.benmanes.caffeine.cache.Cache<CacheKey, Object> tagCache) ConcurrentMapTagCache(ConcurrentMap<CacheKey, Object> tagCache) -
Uses of CacheKey in io.pebbletemplates.pebble.template
Methods in io.pebbletemplates.pebble.template that return types with arguments of type CacheKeyModifier and TypeMethodDescriptionEvaluationContextImpl.getTagCache()Returns the cache used for the "cache" tagConstructor parameters in io.pebbletemplates.pebble.template with type arguments of type CacheKeyModifierConstructorDescriptionEvaluationContextImpl(PebbleTemplateImpl self, boolean strictVariables, Locale locale, int maxRenderedSize, ExtensionRegistry extensionRegistry, PebbleCache<CacheKey, Object> tagCache, ExecutorService executorService, List<PebbleTemplateImpl> importedTemplates, Map<String, PebbleTemplateImpl> namedImportedTemplates, ScopeChain scopeChain, Hierarchy hierarchy, EvaluationOptions evaluationOptions) Constructor used to provide all final variables.