Uses of Interface
io.pebbletemplates.pebble.cache.PebbleCache
Packages that use PebbleCache
Package
Description
-
Uses of PebbleCache in io.pebbletemplates.pebble
Fields in io.pebbletemplates.pebble declared as PebbleCacheModifier and TypeFieldDescriptionprivate PebbleCache
<CacheKey, Object> PebbleEngine.Builder.tagCache
private final PebbleCache
<CacheKey, Object> PebbleEngine.tagCache
private PebbleCache
<Object, PebbleTemplate> PebbleEngine.Builder.templateCache
private final PebbleCache
<Object, PebbleTemplate> PebbleEngine.templateCache
Methods in io.pebbletemplates.pebble that return PebbleCacheModifier and TypeMethodDescriptionPebbleEngine.getTagCache()
Returns the tag cachePebbleEngine.getTemplateCache()
Returns the template cacheMethods in io.pebbletemplates.pebble with parameters of type PebbleCacheModifier and TypeMethodDescriptionPebbleEngine.Builder.tagCache
(PebbleCache<CacheKey, Object> tagCache) Sets the cache used by the "cache" tag.PebbleEngine.Builder.templateCache
(PebbleCache<Object, PebbleTemplate> templateCache) Sets the cache used by the engine to store compiled PebbleTemplate instances.Constructors in io.pebbletemplates.pebble with parameters of type PebbleCacheModifierConstructorDescriptionprivate
PebbleEngine
(Loader<?> loader, Syntax syntax, boolean strictVariables, Locale defaultLocale, int maxRenderedSize, PebbleCache<CacheKey, Object> tagCache, PebbleCache<Object, PebbleTemplate> templateCache, ExecutorService executorService, ExtensionRegistry extensionRegistry, ParserOptions parserOptions, EvaluationOptions evaluationOptions) Constructor for the Pebble Engine given an instantiated Loader. -
Uses of PebbleCache in io.pebbletemplates.pebble.cache.tag
Classes in io.pebbletemplates.pebble.cache.tag that implement PebbleCache -
Uses of PebbleCache in io.pebbletemplates.pebble.cache.template
Classes in io.pebbletemplates.pebble.cache.template that implement PebbleCache -
Uses of PebbleCache in io.pebbletemplates.pebble.template
Fields in io.pebbletemplates.pebble.template declared as PebbleCacheModifier and TypeFieldDescriptionprivate final PebbleCache
<CacheKey, Object> EvaluationContextImpl.tagCache
The tag cacheMethods in io.pebbletemplates.pebble.template that return PebbleCacheModifier and TypeMethodDescriptionEvaluationContextImpl.getTagCache()
Returns the cache used for the "cache" tagConstructors in io.pebbletemplates.pebble.template with parameters of type PebbleCacheModifierConstructorDescriptionEvaluationContextImpl
(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.