import org.cache2k.Cache; import org.cache2k.CacheBuilder; public class CacheExample { public static void main(String[] args) { Cache<Integer, String> cache = CacheBuilder.newBuilder(Integer.class, String.class) .build(); cache.put(1, "Hello"); cache.put(2, "World"); String value1 = cache.get(1); String value2 = cache.get(2); } }


上一篇:
下一篇:
切换中文