/** * Copyright (c) 2011-2017, James Zhan 詹波 (jfinal@126.com). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.jfinal.plugin.redis; import java.util.concurrent.ConcurrentHashMap; import redis.clients.jedis.Jedis; import com.jfinal.kit.StrKit; /** * Redis. * redis 工具类 * <pre> * 例如: * Redis.use().set("key", "value"); * Redis.use().get("key"); * </pre> */ public class Redis { static Cache mainCache = null; private static final ConcurrentHashMap<String, Cache> cacheMap = new ConcurrentHashMap<String, Cache>(); public static void addCache(Cache cache) { if (cache == null) throw new IllegalArgumentException("cache can not be null"); if (cacheMap.containsKey(cache.getName())) throw new IllegalArgumentException("The cache name already exists"); cacheMap.put(cache.getName(), cache); if (mainCache == null) mainCache = cache; } public static Cache removeCache(String cacheName) { return cacheMap.remove(cacheName); } /** * 提供一个设置设置主缓存 mainCache 的机会,否则第一个被初始化的 Cache 将成为 mainCache */ public static void setMainCache(String cacheName) { if (StrKit.isBlank(cacheName)) throw new IllegalArgumentException("cacheName can not be blank"); cacheName = cacheName.trim(); Cache cache = cacheMap.get(cacheName); if (cache == null) throw new IllegalArgumentException("the cache not exists: " + cacheName); Redis.mainCache = cache; } public static Cache use() { return mainCache; } public static Cache use(String cacheName) { return cacheMap.get(cacheName); } public static Object call(ICallback callback) { return call(callback, use()); } public static Object call(ICallback callback, String cacheName) { return call(callback, use(cacheName)); } private static Object call(ICallback callback, Cache cache) { Jedis jedis = cache.getThreadLocalJedis(); boolean notThreadLocalJedis = (jedis == null); if (notThreadLocalJedis) { jedis = cache.jedisPool.getResource(); cache.setThreadLocalJedis(jedis); } try { return callback.call(cache); } finally { if (notThreadLocalJedis) { cache.removeThreadLocalJedis(); jedis.close(); } } } }