Package org.jboss.cache

Examples of org.jboss.cache.Cache.startBatch()


    CacheFactory factory = new DefaultCacheFactory();
    Cache cache = factory.createCache(config);
   
    cache.put("/a", "a", new Content("a"));
   
    cache.startBatch();
    cache.put("/b", "b", new Content("b"));
    cache.put("/c", "c", new Content("c"));
    cache.put("/d", "d", new Content("d"));
    cache.endBatch(true);
   
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.