Uses of Class
org.hibernate.cache.spi.QueryKey
-
Packages that use QueryKey Package Description org.hibernate.cache.internal Internal implementations and support for second-level caching.org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching allowing "caching back ends" to be plugged in as a caching provider.org.hibernate.sql.results.caching.internal org.hibernate.sql.results.jdbc.internal -
-
Uses of QueryKey in org.hibernate.cache.internal
Methods in org.hibernate.cache.internal with parameters of type QueryKey Modifier and Type Method Description List<?>
QueryResultsCacheImpl. get(QueryKey key, String[] spaces, SharedSessionContractImplementor session)
List<?>
QueryResultsCacheImpl. get(QueryKey key, Set<String> spaces, SharedSessionContractImplementor session)
boolean
QueryResultsCacheImpl. put(QueryKey key, List<?> results, SharedSessionContractImplementor session)
-
Uses of QueryKey in org.hibernate.cache.spi
Methods in org.hibernate.cache.spi that return QueryKey Modifier and Type Method Description static QueryKey
QueryKey. from(String sqlQueryString, Limit limit, QueryParameterBindings parameterBindings, SharedSessionContractImplementor persistenceContext)
Methods in org.hibernate.cache.spi with parameters of type QueryKey Modifier and Type Method Description List<?>
QueryResultsCache. get(QueryKey key, String[] spaces, SharedSessionContractImplementor session)
Get results from the cache.List<?>
QueryResultsCache. get(QueryKey key, Set<String> spaces, SharedSessionContractImplementor session)
Get results from the cache.boolean
QueryResultsCache. put(QueryKey key, List<?> result, SharedSessionContractImplementor session)
Put a result into the query cache. -
Uses of QueryKey in org.hibernate.sql.results.caching.internal
Constructors in org.hibernate.sql.results.caching.internal with parameters of type QueryKey Constructor Description QueryCachePutManagerEnabledImpl(QueryResultsCache queryCache, StatisticsImplementor statistics, QueryKey queryKey, String queryIdentifier, JdbcValuesMetadata metadataForCache)
-
Uses of QueryKey in org.hibernate.sql.results.jdbc.internal
Constructors in org.hibernate.sql.results.jdbc.internal with parameters of type QueryKey Constructor Description JdbcValuesResultSetImpl(ResultSetAccess resultSetAccess, QueryKey queryCacheKey, String queryIdentifier, QueryOptions queryOptions, JdbcValuesMapping valuesMapping, JdbcValuesMetadata metadataForCache, ExecutionContext executionContext)
-