Examples of CollectionRegionAccessStrategy


Examples of org.hibernate.cache.spi.access.CollectionRegionAccessStrategy

        );
      }
      // TODO: Add PluralAttributeBinding.getCaching()
      final String cacheRegionName = cacheRegionPrefix + model.getCacheRegionName();
      final AccessType accessType = AccessType.fromExternalName( model.getCacheConcurrencyStrategy() );
      CollectionRegionAccessStrategy accessStrategy = null;
      if ( accessType != null && settings.isSecondLevelCacheEnabled() ) {
        // TODO: is model.getAttribute().getName() the collection's role??? For now, assuming it is
                LOG.trace("Building cache for collection data [" + model.getAttribute().getName() + "]");
        CollectionRegion collectionRegion =
            settings.getRegionFactory()
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.