Package com.scooterframework.cache

Examples of com.scooterframework.cache.Cache


   *
   * @param name  name of the cache
   * @return the cache associated with the name
   */
  public Cache getCache(String name) {
    Cache cache = chm.get(name);
    if (cache == null) {
      Ehcache ehcache = cacheManager.getEhcache(name);
      if (ehcache == null) {
        log.debug("There is no cache registered with name '" + name
          + "' in ehcache.xml. Will create a cache for it.");
View Full Code Here

TOP

Related Classes of com.scooterframework.cache.Cache

Copyright © 2018 www.massapicom. 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.