Uses of Interface
org.jdbi.v3.core.cache.JdbiCache
-
Packages that use JdbiCache Package Description org.jdbi.v3.cache.noop A non-caching cache implementation.org.jdbi.v3.core.cache Pluggable cache interface for Jdbi internal caches.org.jdbi.v3.core.cache.internal org.jdbi.v3.core.statement Thestatementpackage provides most of the Fluent API to drive statement execution. -
-
Uses of JdbiCache in org.jdbi.v3.cache.noop
Classes in org.jdbi.v3.cache.noop that implement JdbiCache Modifier and Type Class Description classNoopCache<K,V>A no operation cache implementation.Methods in org.jdbi.v3.cache.noop that return JdbiCache Modifier and Type Method Description <K,V>
JdbiCache<K,V>NoopCacheBuilder. build()<K,V>
JdbiCache<K,V>NoopCacheBuilder. buildWithLoader(JdbiCacheLoader<K,V> cacheLoader) -
Uses of JdbiCache in org.jdbi.v3.core.cache
Methods in org.jdbi.v3.core.cache that return JdbiCache Modifier and Type Method Description <K,V>
JdbiCache<K,V>JdbiCacheBuilder. build()Creates an cache instance from the values in the builder.<K,V>
JdbiCache<K,V>JdbiCacheBuilder. buildWithLoader(JdbiCacheLoader<K,V> cacheLoader)Creates an cache instance from the values in the builder and a supplied cache loader. -
Uses of JdbiCache in org.jdbi.v3.core.cache.internal
Classes in org.jdbi.v3.core.cache.internal that implement JdbiCache Modifier and Type Class Description (package private) classDefaultJdbiCache<K,V>Methods in org.jdbi.v3.core.cache.internal that return JdbiCache Modifier and Type Method Description <K,V>
JdbiCache<K,V>DefaultJdbiCacheBuilder. build()<K,V>
JdbiCache<K,V>DefaultJdbiCacheBuilder. buildWithLoader(JdbiCacheLoader<K,V> loader) -
Uses of JdbiCache in org.jdbi.v3.core.statement
Fields in org.jdbi.v3.core.statement declared as JdbiCache Modifier and Type Field Description private JdbiCache<java.lang.String,ParsedSql>CachingSqlParser. parsedSqlCacheprivate JdbiCache<SqlStatements.StatementCacheKey,java.util.function.Function<StatementContext,java.lang.String>>SqlStatements. templateCache
-