Package org.infinispan.grid.demo.test

Source Code of org.infinispan.grid.demo.test.LocalCacheTest

package org.infinispan.grid.demo.test;

import java.io.IOException;

import org.infinispan.Cache;
import org.infinispan.manager.DefaultCacheManager;

public class LocalCacheTest {

  public static void main(String[] args) throws IOException {
    Cache<Object, Object> c = new DefaultCacheManager("infinispan-local-inter.xml").getCache();
    System.out.println(c.getVersion());
    c.stop();
  }

}
TOP

Related Classes of org.infinispan.grid.demo.test.LocalCacheTest

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.