abstract class AbstractEhcacheRegionFactory
extends java.lang.Object
implements org.hibernate.cache.RegionFactory
Modifier and Type | Field and Description |
---|---|
protected EhcacheAccessStrategyFactory |
accessStrategyFactory
EhcacheAccessStrategyFactory for creating various access strategies |
private static org.slf4j.Logger |
LOG |
protected CacheManager |
manager
Ehcache CacheManager that supplied Ehcache instances for this Hibernate RegionFactory.
|
protected ProviderMBeanRegistrationHelper |
mbeanRegistrationHelper
MBean registration helper class instance for Ehcache Hibernate MBeans.
|
static java.lang.String |
NET_SF_EHCACHE_CACHE_MANAGER_NAME
The Hibernate system property specifying the name of the CacheManager being created.
|
static java.lang.String |
NET_SF_EHCACHE_CONFIGURATION_RESOURCE_NAME
The Hibernate system property specifying the location of the ehcache configuration file name.
|
protected org.hibernate.cfg.Settings |
settings
Settings object for the Hibernate persistence unit.
|
Constructor and Description |
---|
AbstractEhcacheRegionFactory() |
Modifier and Type | Method and Description |
---|---|
org.hibernate.cache.CollectionRegion |
buildCollectionRegion(java.lang.String regionName,
java.util.Properties properties,
org.hibernate.cache.CacheDataDescription metadata) |
org.hibernate.cache.EntityRegion |
buildEntityRegion(java.lang.String regionName,
java.util.Properties properties,
org.hibernate.cache.CacheDataDescription metadata) |
org.hibernate.cache.QueryResultsRegion |
buildQueryResultsRegion(java.lang.String regionName,
java.util.Properties properties) |
org.hibernate.cache.TimestampsRegion |
buildTimestampsRegion(java.lang.String regionName,
java.util.Properties properties) |
private Ehcache |
getCache(java.lang.String name) |
org.hibernate.cache.access.AccessType |
getDefaultAccessType()
Default access-type used when the configured using JPA 2.0 config.
|
boolean |
isMinimalPutsEnabledByDefault()
Whether to optimize for minimals puts or minimal gets.
|
protected static java.net.URL |
loadResource(java.lang.String configurationResourceName)
Load a resource from the classpath.
|
long |
nextTimestamp() |
public static final java.lang.String NET_SF_EHCACHE_CONFIGURATION_RESOURCE_NAME
public static final java.lang.String NET_SF_EHCACHE_CACHE_MANAGER_NAME
private static final org.slf4j.Logger LOG
protected final ProviderMBeanRegistrationHelper mbeanRegistrationHelper
protected volatile CacheManager manager
protected org.hibernate.cfg.Settings settings
protected final EhcacheAccessStrategyFactory accessStrategyFactory
EhcacheAccessStrategyFactory
for creating various access strategiespublic boolean isMinimalPutsEnabledByDefault()
Indicates whether when operating in non-strict read/write or read-only mode Hibernate should optimize the access patterns for minimal puts or minimal gets. In Ehcache we default to minimal puts since this should have minimal to no affect on unclustered users, and has great benefit for clustered users.
This setting can be overridden by setting the "hibernate.cache.use_minimal_puts" property in the Hibernate configuration.
isMinimalPutsEnabledByDefault
in interface org.hibernate.cache.RegionFactory
public long nextTimestamp()
nextTimestamp
in interface org.hibernate.cache.RegionFactory
public org.hibernate.cache.EntityRegion buildEntityRegion(java.lang.String regionName, java.util.Properties properties, org.hibernate.cache.CacheDataDescription metadata) throws org.hibernate.cache.CacheException
buildEntityRegion
in interface org.hibernate.cache.RegionFactory
org.hibernate.cache.CacheException
public org.hibernate.cache.CollectionRegion buildCollectionRegion(java.lang.String regionName, java.util.Properties properties, org.hibernate.cache.CacheDataDescription metadata) throws org.hibernate.cache.CacheException
buildCollectionRegion
in interface org.hibernate.cache.RegionFactory
org.hibernate.cache.CacheException
public org.hibernate.cache.QueryResultsRegion buildQueryResultsRegion(java.lang.String regionName, java.util.Properties properties) throws org.hibernate.cache.CacheException
buildQueryResultsRegion
in interface org.hibernate.cache.RegionFactory
org.hibernate.cache.CacheException
public org.hibernate.cache.TimestampsRegion buildTimestampsRegion(java.lang.String regionName, java.util.Properties properties) throws org.hibernate.cache.CacheException
buildTimestampsRegion
in interface org.hibernate.cache.RegionFactory
org.hibernate.cache.CacheException
private Ehcache getCache(java.lang.String name) throws org.hibernate.cache.CacheException
org.hibernate.cache.CacheException
protected static java.net.URL loadResource(java.lang.String configurationResourceName)
public org.hibernate.cache.access.AccessType getDefaultAccessType()
@Cacheable(true)
to be attached to an
entity without any access type or usage qualification.
We are conservative here in specifying AccessType.READ_WRITE
so as to follow the mantra of "do no harm".
This is a Hibernate 3.5 method.
getDefaultAccessType
in interface org.hibernate.cache.RegionFactory