Examples of terracotta()


Examples of net.sf.ehcache.config.CacheConfiguration.terracotta()

    config.setMaxElementsOnDisk(this.maxElementsOnDisk);

    if (this.terracottaClustered) {
      TerracottaConfiguration tcConfig = new TerracottaConfiguration();
      tcConfig.setClustered(true);
      config.terracotta(tcConfig);
    }

    return new Cache(config);
  }
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.