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

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

Introduction

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

Usage

From source file com.alachisoft.tayzgrid.integrations.hibernate.cache.regions.TayzGridRegion.java

public class TayzGridRegion implements Region {

    private String _name;
    private TayzGrid _cache;

    public TayzGridRegion(String name, Properties properties) {

From source file com.googlecode.hibernate.memcached.region.AbstractMemcachedRegion.java

/**
 *
 * @author kcarlson
 */
public abstract class AbstractMemcachedRegion implements Region {

From source file com.hazelcast.hibernate.region.HazelcastRegion.java

/**
 * Hazelcast specific interface version of Hibernate's Region
 *
 * @author Leo Kim (lkim@limewire.com)
 * @param <Cache> implementation type of RegionCache
 */

From source file com.hazelcast.hibernate4.region.HazelcastRegion.java

/**
 * @author Leo Kim (lkim@limewire.com)
 */
public interface HazelcastRegion<Cache extends RegionCache> extends Region {

    HazelcastInstance getInstance();

From source file com.mc.hibernate.memcached.region.AbstractMemcachedRegion.java

public abstract class AbstractMemcachedRegion implements Region {

    protected MemcachedCache cache;

    AbstractMemcachedRegion(MemcachedCache cache) {
        this.cache = cache;

From source file com.oracle.coherence.hibernate.cache.region.CoherenceRegion.java

/**
 * CoherenceRegion is an abstract superclass for classes representing different kinds of "region" in the Hibernate
 * second-level cache.  It abstracts behavior (and state) common to all types of Hibernate second-level cache region.
 *
 * Note that there is a concept (and therefore terminology) mapping between the Hibernate world and the Coherence world.
 * Hibernate uses "cache" to mean the whole, and "region" to mean a part of the whole.  Coherence uses "data grid" to

From source file kr.pe.kwonnam.hibernate4memcached.example.testcache.BaseRegion.java

/**
 * @author Strong Liu
 */
class BaseRegion implements Region {
    protected final Map cache = new ConcurrentHashMap();
    private final String name;

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

/**
 * Implementation of {@link Region}. This interface defines base contract for all L2 cache regions.
 */
public class GridHibernateRegion implements Region {
    /** */
    protected final GridHibernateRegionFactory factory;

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

/**
 * Implementation of {@link Region}. This interface defines base contract for all L2 cache regions.
 */
public class HibernateRegion implements Region {
    /** */
    protected final HibernateRegionFactory factory;

From source file org.exoplatform.services.database.impl.regions.ExoCacheRegion.java

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