码迷,mamicode.com
首页 > 其他好文 > 详细

Google Guava-基于泛型的使用方式

时间:2015-02-04 12:59:12      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:guava cache   泛型   

源码:

private static Cache<String, String> cacheFormCallable = null;

public static <K, V> Cache<K, V> callableCached() throws Exception {
		Cache<K, V> cache = CacheBuilder.newBuilder().maximumSize(10000).expireAfterWrite(10, TimeUnit.MINUTES).build();
		return cache;
	}

private String getCallableCache(final String userName) {
		try {
			// Callable只有在缓存值不存在时,才会调用
			return cacheFormCallable.get(userName, new Callable<String>() {
				@Override
				public String call() throws Exception {
					System.out.println(userName + " from db");
					return "hello " + userName + "!";
				}
			});
		} catch (ExecutionException e) {
			e.printStackTrace();
			return null;
		}
	}


Google Guava-基于泛型的使用方式

标签:guava cache   泛型   

原文地址:http://blog.csdn.net/u012516914/article/details/43484087

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!