Example usage for org.hibernate.cache.spi RegionFactory interface-usage

List of usage examples for org.hibernate.cache.spi RegionFactory interface-usage

Introduction

In this page you can find the example usage for org.hibernate.cache.spi RegionFactory interface-usage.

Usage

From source file com.alachisoft.tayzgrid.integrations.hibernate.cache.TayzGridRegionFactory.java

public class TayzGridRegionFactory implements RegionFactory {

    /**
     * Life cycle callback to perform any necessary initialization of the
     * underlying cache implementation(s). Called exactly once during the
     * construction of a {@link org.hibernate.internal.SessionFactoryImpl}.

From source file com.googlecode.hibernate.memcached.MemcachedRegionFactory.java

/**
 *
 * @author kcarlson
 */
public class MemcachedRegionFactory implements RegionFactory {
    private static final long serialVersionUID = -1456567384723931908L;

From source file com.hazelcast.hibernate.AbstractHazelcastCacheRegionFactory.java

/**
 * Abstract superclass of Hazelcast based {@link org.hibernate.cache.RegionFactory} implementations
 */
public abstract class AbstractHazelcastCacheRegionFactory implements RegionFactory {

    protected HazelcastInstance instance;

From source file com.hazelcast.hibernate.HazelcastCacheRegionFactory.java

/**
 * Simple RegionFactory implementation to return Hazelcast based Region implementations
 */
public class HazelcastCacheRegionFactory extends AbstractHazelcastCacheRegionFactory implements RegionFactory {

    public HazelcastCacheRegionFactory() {

From source file com.hazelcast.hibernate.HazelcastLocalCacheRegionFactory.java

/**
 * Simple RegionFactory implementation to return Hazelcast based local Region implementations
 */
public class HazelcastLocalCacheRegionFactory extends AbstractHazelcastCacheRegionFactory implements RegionFactory {

    private static final int serialVersionUID = 1;

From source file com.hazelcast.hibernate4.AbstractHazelcastCacheRegionFactory.java

public abstract class AbstractHazelcastCacheRegionFactory implements RegionFactory {

    private final ILogger LOG = Logger.getLogger(getClass().getName());

    private IHazelcastInstanceLoader instanceLoader = null;
    protected HazelcastInstance instance;

From source file com.oracle.coherence.hibernate.cache.CoherenceRegionFactory.java

/**
 * A CoherenceRegionFactory is a factory for regions of Hibernate second-level cache implemented with Oracle Coherence.
 *
 * @author Randy Stafford
 */
public class CoherenceRegionFactory implements RegionFactory {

From source file org.apache.ignite.cache.hibernate.GridHibernateRegionFactory.java

/**
 * Hibernate L2 cache region factory.
 * <p>
 * Following Hibernate settings should be specified to enable second level cache and to use this
 * region factory for caching:
 * <pre name="code" class="brush: xml; gutter: false;">

From source file org.apache.ignite.cache.hibernate.HibernateRegionFactory.java

/**
 * Hibernate L2 cache region factory.
 * <p>
 * Following Hibernate settings should be specified to enable second level cache and to use this
 * region factory for caching:
 * <pre name="code" class="brush: xml; gutter: false;">

From source file org.exoplatform.services.database.impl.ExoCacheRegionFactory.java

/**
 * @author <a href="dvishinskiy@exoplatform.com">Dmitriy Vishinskiy</a>
 * @version $Id:$
 */
public class ExoCacheRegionFactory implements RegionFactory {