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);