Package | Description |
---|---|
org.hibernate.cache.internal |
Internal implementations and support for second-level caching.
|
org.hibernate.cache.spi |
Defines the Hibernate second level caching SPI.
|
org.hibernate.engine.spi | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.loader |
This package defines functionality for processing JDBC
result sets and returning complex graphs of persistent
objects.
|
org.hibernate.loader.custom |
This package defines a framework for custom loaders that accept
handwritten SQL
|
Modifier and Type | Class and Description |
---|---|
class |
StandardQueryCache
The standard implementation of the Hibernate QueryCache interface.
|
Modifier and Type | Method and Description |
---|---|
QueryCache |
StandardQueryCacheFactory.getQueryCache(String regionName,
UpdateTimestampsCache updateTimestampsCache,
Settings settings,
Properties props) |
Modifier and Type | Method and Description |
---|---|
QueryCache |
QueryCacheFactory.getQueryCache(String regionName,
UpdateTimestampsCache updateTimestampsCache,
Settings settings,
Properties props)
Builds a named query cache.
|
Modifier and Type | Method and Description |
---|---|
QueryCache |
SessionFactoryImplementor.getQueryCache()
Get the default query cache
|
QueryCache |
CacheImplementor.getQueryCache()
Get the default
QueryCache . |
QueryCache |
SessionFactoryImplementor.getQueryCache(String regionName)
Get a particular named query cache, or the default cache
|
QueryCache |
CacheImplementor.getQueryCache(String regionName)
Get query cache by region name or create a new one if none exist.
|
Modifier and Type | Method and Description |
---|---|
QueryCache |
CacheImpl.getQueryCache() |
QueryCache |
SessionFactoryImpl.getQueryCache() |
QueryCache |
CacheImpl.getQueryCache(String regionName) |
QueryCache |
SessionFactoryImpl.getQueryCache(String regionName) |
Modifier and Type | Method and Description |
---|---|
protected void |
Loader.putResultInQueryCache(SessionImplementor session,
QueryParameters queryParameters,
Type[] resultTypes,
QueryCache queryCache,
QueryKey key,
List result) |
Modifier and Type | Method and Description |
---|---|
protected void |
CustomLoader.putResultInQueryCache(SessionImplementor session,
QueryParameters queryParameters,
Type[] resultTypes,
QueryCache queryCache,
QueryKey key,
List result)
CustomLoader.resultTypes can be overridden by CustomLoader.autoDiscoverTypes(ResultSet) ,
*after* CustomLoader.list(SessionImplementor, QueryParameters) has already been called. |
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.