redis(5)redisとMybatisのシームレスな統合によりMyBatisの透明な管理キャッシュ2

11163 ワード

前回のCaheクラスでは、同じ接続をずっと使用していて、毎回新しいCacheを作成しています.プロジェクトではconnection timeoutの異常が爆発したり、保存されているkeyが長すぎたりするなどの問題がありました.問題を解決する最善の方法は、ソースコードを見たり、公式のドキュメントの説明を見たりすることです.jedisのドキュメントは十分です.次にcacheも以下の添付コードを改造します.
package cn.seafood.cache;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.ibatis.cache.Cache;

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
import redis.clients.jedis.exceptions.JedisConnectionException;
import cn.seafood.util.PropertiesLoader;

/**
 * 
* @ClassName: RedisCache
* @Description: TODO(          redis,      )
* @author LiuYi
* @date 2014 6 9    1:37:46
*
 */
public class RedisCache   implements Cache {
        private static Log log = LogFactory.getLog(RedisCache.class);
        /** The ReadWriteLock. */
        private final ReadWriteLock readWriteLock = new ReentrantReadWriteLock();
        
        private String id;
        public RedisCache(final String id) {
                if (id == null) {
                        throw new IllegalArgumentException("    ID");
                }
                log.debug("MybatisRedisCache:id=" + id);
                this.id=id;
        }
        
        @Override
        public String getId() {
                return this.id;
        }

        @Override
        public int getSize() {
                Jedis jedis = null;
                JedisPool jedisPool = null;
                int result = 0;
                boolean borrowOrOprSuccess = true;
                try {
                        jedis   = CachePool.getInstance().getJedis();
                        jedisPool = CachePool.getInstance().getJedisPool();
                        result = Integer.valueOf(jedis.dbSize().toString());
                } catch (JedisConnectionException e) {
                        borrowOrOprSuccess = false;
                        if (jedis != null)
                                jedisPool.returnBrokenResource(jedis);
                } finally {
                        if (borrowOrOprSuccess)
                                jedisPool.returnResource(jedis);
                }
                return result;
                 
        }

        @Override
        public void putObject(Object key, Object value) {
                if(log.isDebugEnabled())
                log.debug("putObject:" + key.hashCode() + "=" + value);
                if(log.isInfoEnabled())
                log.info("put to redis sql :" +key.toString());
                Jedis jedis = null;
                JedisPool jedisPool = null;
                boolean borrowOrOprSuccess = true;
                try {
                        jedis   = CachePool.getInstance().getJedis();
                        jedisPool = CachePool.getInstance().getJedisPool();
                        jedis.set(SerializeUtil.serialize(key.hashCode()), SerializeUtil.serialize(value));
                } catch (JedisConnectionException e) {
                        borrowOrOprSuccess = false;
                        if (jedis != null)
                                jedisPool.returnBrokenResource(jedis);
                } finally {
                        if (borrowOrOprSuccess)
                                jedisPool.returnResource(jedis);
                }
                
        }

        @Override
        public Object getObject(Object key) {
                Jedis jedis = null;
                JedisPool jedisPool = null;
                Object value = null;
                boolean borrowOrOprSuccess = true;
                try {
                        jedis   = CachePool.getInstance().getJedis();
                        jedisPool = CachePool.getInstance().getJedisPool();
                        value  = SerializeUtil.unserialize(jedis.get(SerializeUtil.serialize(key.hashCode())));
                } catch (JedisConnectionException e) {
                        borrowOrOprSuccess = false;
                        if (jedis != null)
                                jedisPool.returnBrokenResource(jedis);
                } finally {
                        if (borrowOrOprSuccess)
                                jedisPool.returnResource(jedis);
                }
                if(log.isDebugEnabled())
                log.debug("getObject:" + key.hashCode() + "=" + value);
                return value;
        }

        @Override
        public Object removeObject(Object key) {
                Jedis jedis = null;
                JedisPool jedisPool = null;
                Object value = null;
                boolean borrowOrOprSuccess = true;
                try {
                        jedis   = CachePool.getInstance().getJedis();
                        jedisPool = CachePool.getInstance().getJedisPool();
                        value  = jedis.expire(SerializeUtil.serialize(key.hashCode()), 0);
                } catch (JedisConnectionException e) {
                        borrowOrOprSuccess = false;
                        if (jedis != null)
                                jedisPool.returnBrokenResource(jedis);
                } finally {
                        if (borrowOrOprSuccess)
                                jedisPool.returnResource(jedis);
                }
                if(log.isDebugEnabled())
                log.debug("getObject:" + key.hashCode() + "=" + value);
                return value;
        }

        @Override
        public void clear() {
                Jedis jedis = null;
                JedisPool jedisPool = null;
                boolean borrowOrOprSuccess = true;
                try {
                        jedis   = CachePool.getInstance().getJedis();
                        jedisPool = CachePool.getInstance().getJedisPool();
                        jedis.flushDB();
                        jedis.flushAll();
                } catch (JedisConnectionException e) {
                        borrowOrOprSuccess = false;
                        if (jedis != null)
                                jedisPool.returnBrokenResource(jedis);
                } finally {
                        if (borrowOrOprSuccess)
                                jedisPool.returnResource(jedis);
                }
        }

        @Override
        public ReadWriteLock getReadWriteLock() {
                return readWriteLock;
        }
       /**
        * 
       * @ClassName: CachePool
       * @Description: TODO(  Cache )
       * @author LiuYi
       * @date 2014 6 17    10:50:52
       *
        */
        public static class CachePool {
                JedisPool pool;
                private static final CachePool cachePool = new CachePool();
                
                public static CachePool getInstance(){
                        return cachePool;
                }
                private CachePool() {
                        JedisPoolConfig config = new JedisPoolConfig();
                        config.setMaxIdle(100);
                        config.setMaxWaitMillis(1000l);
                         PropertiesLoader pl =  new PropertiesLoader("classpath:config/redis.properties");
                         pool = new JedisPool(config,pl.getProperty("redisvip"));
                }
                public  Jedis getJedis(){
                        Jedis jedis = null;
                        boolean borrowOrOprSuccess = true;
                        try {
                                jedis = pool.getResource();
                        } catch (JedisConnectionException e) {
                                borrowOrOprSuccess = false;
                                if (jedis != null)
                                        pool.returnBrokenResource(jedis);
                        } finally {
                                if (borrowOrOprSuccess)
                                        pool.returnResource(jedis);
                        }
                        jedis = pool.getResource();
                        return jedis;
                }
                
                public JedisPool getJedisPool(){
                        return this.pool;
                }
                
        }
        
        
        public static class SerializeUtil {
                public static byte[] serialize(Object object) {
                        ObjectOutputStream oos = null;
                        ByteArrayOutputStream baos = null;
                        try {
                                //    
                                baos = new ByteArrayOutputStream();
                                oos = new ObjectOutputStream(baos);
                                oos.writeObject(object);
                                byte[] bytes = baos.toByteArray();
                                return bytes;
                        } catch (Exception e) {
                                e.printStackTrace();
                        }
                        return null;
                }

                public static Object unserialize(byte[] bytes) {
                        if(bytes == null)return null;
                        ByteArrayInputStream bais = null;
                        try {
                                //     
                                bais = new ByteArrayInputStream(bytes);
                                ObjectInputStream ois = new ObjectInputStream(bais);
                                return ois.readObject();
                        } catch (Exception e) {
                                e.printStackTrace();
                        }
                        return null;
                }
        }
}