zoukankan      html  css  js  c++  java
  • Redis分布式锁实现秒杀业务(乐观锁、悲观锁)

    一、业务场景

      所谓秒杀,从业务角度看,是短时间内多个用户“争抢”资源,这里的资源在大部分秒杀场景里是商品;将业务抽象,技术角度看,秒杀就是多个线程对资源进行操作,所以实现秒杀,就必须控制线程对资源的争抢,既要保证高效并发,也要保证操作的正确。

    二、一些可能的实现

      刚才提到过,实现秒杀的关键点是控制线程对资源的争抢,根据基本的线程知识,可以不加思索的想到下面的一些方法:

    1)、秒杀在技术层面的抽象应该就是一个方法,在这个方法里可能的操作是将商品库存-1,将商品加入用户的购物车等等,在不考虑缓存的情况下应该是要操作数据库的。那么最简单直接的实现就是在这个方法上加上synchronized关键字,通俗的讲就是锁住整个方法;

    2)、锁住整个方法这个策略简单方便,但是似乎有点粗暴。可以稍微优化一下,只锁住秒杀的代码块,比如写数据库的部分;

    3)、既然有并发问题,那我就让他“不并发”,将所有的线程用一个队列管理起来,使之变成串行操作,自然不会有并发问题。

      上面所述的方法都是有效的,但是都不好。为什么?第一和第二种方法本质上是“加锁”,但是锁粒度依然比较高。什么意思?试想一下,如果两个线程同时执行秒杀方法,这两个线程操作的是不同的商品,从业务上讲应该是可以同时进行的,但是如果采用第一二种方法,这两个线程也会去争抢同一个锁,这其实是不必要的。第三种方法也没有解决上面说的问题。

      那么如何将锁控制在更细的粒度上呢?可以考虑为每个商品设置一个互斥锁,以和商品ID相关的字符串为唯一标识,这样就可以做到只有争抢同一件商品的线程互斥,不会导致所有的线程互斥。分布式锁恰好可以帮助我们解决这个问题。

    三、具体的实现

    需要考虑的问题

    1、用什么操作redis?幸亏redis已经提供了jedis客户端用于java应用程序,直接调用jedis API即可。

    2、怎么实现加锁?“锁”其实是一个抽象的概念,将这个抽象概念变为具体的东西,就是一个存储在redis里的key-value对,key是于商品ID相关的字符串来唯一标识,value其实并不重要,因为只要这个唯一的key-value存在,就表示这个商品已经上锁。

    3、如何释放锁?既然key-value对存在就表示上锁,那么释放锁就自然是在redis里删除key-value对。

    4、阻塞还是非阻塞?笔者采用了阻塞式的实现,若线程发现已经上锁,会在特定时间内轮询锁。

    5、如何处理异常情况?比如一个线程把一个商品上了锁,但是由于各种原因,没有完成操作(在上面的业务场景里就是没有将库存-1写入数据库),自然没有释放锁,这个情况笔者加入了锁超时机制,利用redis的expire命令为key设置超时时长,过了超时时间redis就会将这个key自动删除,即强制释放锁(可以认为超时释放锁是一个异步操作,由redis完成,应用程序只需要根据系统特点设置超时时间即可)。

    四、乐观锁实现秒杀系统

      我们知道大多数是基于数据版本(version)的记录机制实现的。即为数据增加一个版本标识,在基于数据库表的版本解决方案中,一般是通过为数据库表增加一个”version”字段来实现读取出数据时,将此版本号一同读出,之后更新时,对此版本号加1。此时,将提交数据的版本号与数据库表对应记录的当前版本号进行比对,如果提交的数据版本号大于数据库当前版本号,则予以更新,否则认为是过期数据。redis中可以使用watch命令会监视给定的key,当exec时候如果监视的key从调用watch后发生过变化,则整个事务会失败。也可以调用watch多次监视多个key。这样就可以对指定的key加乐观锁了。注意watch的key是对整个连接有效的,事务也一样。如果连接断开,监视和事务都会被自动清除。当然了exec,discard,unwatch命令都会清除连接中的所有监视。

      Redis中的事务(transaction)是一组命令的集合。事务同命令一样都是Redis最小的执行单位,一个事务中的命令要么都执行,要么都不执行。Redis事务的实现需要用到 MULTI 和 EXEC 两个命令,事务开始的时候先向Redis服务器发送 MULTI 命令,然后依次发送需要在本次事务中处理的命令,最后再发送 EXEC 命令表示事务命令结束。Redis的事务是下面4个命令来实现 :

    1).multi,开启Redis的事务,置客户端为事务态。

    2).exec,提交事务,执行从multi到此命令前的命令队列,置客户端为非事务态。

    3).discard,取消事务,置客户端为非事务态。

    4).watch,监视键值对,作用时如果事务提交exec时发现监视的监视对发生变化,事务将被取消。

    实现代码如下:

    import java.util.List;
    import java.util.Set;
    import java.util.concurrent.Executor;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import javax.transaction.Transaction;
    import redis.clients.jedis.Jedis;
    
    /**
     * 乐观锁实现秒杀系统
     *
     */
    public class OptimisticLockTest {
    
        public static void main(String[] args) {
            long startTime = System.currentTimeMillis();
            initProduct();
            initClient();
            printResult();
            long endTime = System.currentTimeMillis();
            long time = endTime - startTime;
            System.out.println("程序运行时间 : " + (int)time + "ms");
        }
    
        /**
         * 初始化商品
         * @date 2017-10-17
         */
        public static void initProduct() {
            int prdNum = 100;//商品个数
            String key = "prdNum";
            String clientList = "clientList";//抢购到商品的顾客列表
            Jedis jedis = RedisUtil.getInstance().getJedis();
            if (jedis.exists(key)) {
                jedis.del(key);
            }
            if (jedis.exists(clientList)) {
                jedis.del(clientList);
            }
            jedis.set(key, String.valueOf(prdNum));//初始化商品
            RedisUtil.returnResource(jedis);
        }
    
        /**
         * 顾客抢购商品(秒杀操作)
         * @date 2017-10-17
         */
        public static void initClient() {
            ExecutorService cachedThreadPool = Executors.newCachedThreadPool();
            int clientNum = 10000;//模拟顾客数目
            for (int i = 0; i < clientNum; i++) {
                cachedThreadPool.execute(new ClientThread(i));//启动与顾客数目相等的消费者线程
            }
            cachedThreadPool.shutdown();//关闭线程池
            while (true) {
                if (cachedThreadPool.isTerminated()) {
                    System.out.println("所有的消费者线程均结束了");    
                    break;   
                }
                try {
                    Thread.sleep(100);
                } catch (Exception e) {
                    // TODO: handle exception
                }
            }
        }
    
        /**
         * 打印抢购结果
         * @date 2017-10-17
         */
        public static void printResult() {
            Jedis jedis = RedisUtil.getInstance().getJedis();
            Set<String> set = jedis.smembers("clientList");
            int i = 1;
            for (String value : set) {
                System.out.println("第" + i++ + "个抢到商品,"+value + " "); 
            }
            RedisUtil.returnResource(jedis);
        }
    
    
        /**
         * 内部类:模拟消费者线程
         */
        static class ClientThread implements Runnable{
    
            Jedis jedis = null;
            String key = "prdNum";//商品主键
            String clientList = "clientList";//抢购到商品的顾客列表主键
            String clientName;
    
            public ClientThread(int num){
                clientName = "编号=" + num;
            }
    
    //      1.multi,开启Redis的事务,置客户端为事务态。 
    //      2.exec,提交事务,执行从multi到此命令前的命令队列,置客户端为非事务态。 
    //      3.discard,取消事务,置客户端为非事务态。 
    //      4.watch,监视键值对,作用是如果事务提交exec时发现监视的键值对发生变化,事务将被取消。 
            @Override
            public void run() {
                try {
                    Thread.sleep((int)Math.random()*5000);//随机睡眠一下
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
    
                while(true){
                    System.out.println("顾客:" + clientName + "开始抢购商品");
                    jedis = RedisUtil.getInstance().getJedis();
                    try {
                        jedis.watch(key);//监视商品键值对,作用时如果事务提交exec时发现监视的键值对发生变化,事务将被取消
                        int prdNum = Integer.parseInt(jedis.get(key));//当前商品个数
                        if (prdNum > 0) {
                            Transaction transaction = (Transaction) jedis.multi();//开启redis事务
                            ((Jedis) transaction).set(key,String.valueOf(prdNum - 1));//商品数量减一
                            List<Object> result = ((redis.clients.jedis.Transaction) transaction).exec();//提交事务(乐观锁:提交事务的时候才会去检查key有没有被修改)
                            if (result == null || result.isEmpty()) {
                                System.out.println("很抱歉,顾客:" + clientName + "没有抢到商品");// 可能是watch-key被外部修改,或者是数据操作被驳回
                            }else {
                                jedis.sadd(clientList, clientName);//抢到商品的话记录一下
                                System.out.println("恭喜,顾客:" + clientName + "抢到商品");  
                                break; 
                            }
                        }else {
                             System.out.println("很抱歉,库存为0,顾客:" + clientName + "没有抢到商品");  
                             break; 
                        }
                    } catch (Exception e) {
                        // TODO: handle exception
                    }finally{
                        jedis.unwatch();
                        RedisUtil.returnResource(jedis);
                    }
                }
            }
        }
    }

    五、悲观锁实现秒杀系统

      实现秒杀的类PessimisticLockTest:

    import java.util.Set;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.TimeUnit;
    
    import redis.clients.jedis.Jedis;
    import test.OptimisticLockTest.ClientThread;
    
    public class PessimisticLockTest {
    
        public static void main(String[] args) {
            long startTime = System.currentTimeMillis();
            initProduct();
            initClient();
            printResult();
            long endTime = System.currentTimeMillis();
            long time = endTime - startTime;
            System.out.println("程序运行时间 : " + (int)time + "ms");
        }
    
        /**
         * 初始化商品
         * @date 2017-10-17
         */
        public static void initProduct() {
            int prdNum = 100;//商品个数
            String key = "prdNum";
            String clientList = "clientList";//抢购到商品的顾客列表
            Jedis jedis = RedisUtil.getInstance().getJedis();
            if (jedis.exists(key)) {
                jedis.del(key);
            }
            if (jedis.exists(clientList)) {
                jedis.del(clientList);
            }
            jedis.set(key, String.valueOf(prdNum));//初始化商品
            RedisUtil.returnResource(jedis);
        }
    
        /**
         * 顾客抢购商品(秒杀操作)
         * @date 2017-10-17
         */
        public static void initClient() {
            ExecutorService cachedThreadPool = Executors.newCachedThreadPool();
            int clientNum = 10000;//模拟顾客数目
            for (int i = 0; i < clientNum; i++) {
                cachedThreadPool.execute(new ClientThread(i));//启动与顾客数目相等的消费者线程
            }
            cachedThreadPool.shutdown();//关闭线程池
            while (true) {
                if (cachedThreadPool.isTerminated()) {
                    System.out.println("所有的消费者线程均结束了");    
                    break;   
                }
                try {
                    Thread.sleep(100);
                } catch (Exception e) {
                    // TODO: handle exception
                }
            }
        }
    
        /**
         * 打印抢购结果
         * @date 2017-10-17
         */
        public static void printResult() {
            Jedis jedis = RedisUtil.getInstance().getJedis();
            Set<String> set = jedis.smembers("clientList");
            int i = 1;
            for (String value : set) {
                System.out.println("第" + i++ + "个抢到商品,"+value + " "); 
            }
            RedisUtil.returnResource(jedis);
        }
    
        /**
         * 消费者线程
         */
        static class PessClientThread implements Runnable{
    
            String key = "prdNum";//商品主键
            String clientList = "clientList";//抢购到商品的顾客列表
            String clientName;
            Jedis jedis = null;
            RedisBasedDistributedLock redisBasedDistributedLock; 
    
            public PessClientThread(int num){
                clientName = "编号=" + num;
                init();
            }
    
            public void init() {
                jedis = RedisUtil.getInstance().getJedis();
                redisBasedDistributedLock = new RedisBasedDistributedLock(jedis, "lock.lock", 5 * 1000); 
            }
    
            @Override
            public void run() {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                while (true) {
                    if (Integer.parseInt(jedis.get(key)) <= 0) {
                        break;//缓存中没有商品,跳出循环,消费者线程执行完毕
                    }
                    //缓存中还有商品,取锁,商品数目减一
                     System.out.println("顾客:" + clientName + "开始抢商品");  
                     if (redisBasedDistributedLock.tryLock(3,TimeUnit.SECONDS)) {//等待3秒获取锁,否则返回false(悲观锁:每次拿数据都上锁)
                        int prdNum = Integer.parseInt(jedis.get(key));//再次取得商品缓存数目
                        if (prdNum > 0) {
                            jedis.decr(key);//商品数减一
                            jedis.sadd(clientList, clientName);//将抢购到商品的顾客记录一下
                            System.out.println("恭喜,顾客:" + clientName + "抢到商品");  
                        } else {  
                            System.out.println("抱歉,库存为0,顾客:" + clientName + "没有抢到商品");  
                        }
                        redisBasedDistributedLock.unlock0();//操作完成释放锁
                        break;
                    }
                }
                //释放资源
                redisBasedDistributedLock = null;
                RedisUtil.returnResource(jedis);
            }
        }
    }

    抽象锁实现AbstractLock :

    import java.util.concurrent.TimeUnit;  
    import java.util.concurrent.locks.Lock;  
    
    /** 
     * 锁的骨架实现, 真正的获取锁的步骤由子类去实现. 
     *  
     */  
    public abstract class AbstractLock implements Lock {  
    
        /** 
         * <pre> 
         * 这里需不需要保证可见性值得讨论, 因为是分布式的锁,  
         * 1.同一个jvm的多个线程使用不同的锁对象其实也是可以的, 这种情况下不需要保证可见性  
         * 2.同一个jvm的多个线程使用同一个锁对象, 那可见性就必须要保证了. 
         * </pre> 
         */  
        protected volatile boolean locked;  
    
        /** 
         * 当前jvm内持有该锁的线程(if have one) 
         */  
        private Thread exclusiveOwnerThread;  
    
        public void lock() {  
            try {  
                lock(false, 0, null, false);  
            } catch (InterruptedException e) {  
                // TODO ignore  
            }  
        }  
    
        public void lockInterruptibly() throws InterruptedException {  
            lock(false, 0, null, true);  
        }  
    
        public boolean tryLock(long time, TimeUnit unit) {  
            try {  
                System.out.println("ghggggggggggggg");  
                return lock(true, time, unit, false);  
            } catch (InterruptedException e) {  
                e.printStackTrace();  
                System.out.println("" + e);  
            }  
            return false;  
        }  
    
        public boolean tryLockInterruptibly(long time, TimeUnit unit) throws InterruptedException {  
            return lock(true, time, unit, true);  
        }  
    
        public void unlock() {  
            // TODO 检查当前线程是否持有锁  
            if (Thread.currentThread() != getExclusiveOwnerThread()) {  
                throw new IllegalMonitorStateException("current thread does not hold the lock");  
            }  
    
            unlock0();  
            setExclusiveOwnerThread(null);  
        }  
    
        protected void setExclusiveOwnerThread(Thread thread) {  
            exclusiveOwnerThread = thread;  
        }  
    
        protected final Thread getExclusiveOwnerThread() {  
            return exclusiveOwnerThread;  
        }  
    
        protected abstract void unlock0();  
    
        /** 
         * 阻塞式获取锁的实现 
         *  
         * @param useTimeout 是否超时
         * @param time 获取锁的等待时间
         * @param unit 时间单位
         * @param interrupt 
         *            是否响应中断 
         * @return 
         * @throws InterruptedException 
         */  
        protected abstract boolean lock(boolean useTimeout, long time, TimeUnit unit, boolean interrupt)  
                throws InterruptedException;  
    } 

    基于Redis的SETNX操作实现的分布式锁RedisBasedDistributedLock:

    package test;
    
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.locks.Condition;
    import redis.clients.jedis.Jedis;
    
    /** 
     * 基于Redis的SETNX操作实现的分布式锁 
     *  
     * 获取锁时最好用lock(long time, TimeUnit unit), 以免网路问题而导致线程一直阻塞 
     */  
    public class RedisBasedDistributedLock extends AbstractLock{
    
        private Jedis jedis;
        protected String lockKey;//锁的名字
        protected long lockExpire;//锁的有效时长(毫秒)
    
        public RedisBasedDistributedLock(Jedis jedis,String lockKey,long lockExpire){
            this.jedis = jedis;
            this.lockKey = lockKey;
            this.lockExpire = lockExpire;
        }
    
        @Override
        public boolean tryLock() {
            long lockExpireTime = System.currentTimeMillis() + lockExpire + 1;//锁超时时间
            String stringOfLockExpireTime = String.valueOf(lockExpireTime);
            if (jedis.setnx(lockKey, stringOfLockExpireTime) == 1) {//获取到锁
                //设置相关标识
                locked = true;
                setExclusiveOwnerThread(Thread.currentThread());
                return true;
            }
            String value = jedis.get(lockKey);
            if (value != null && isTimeExpired(value)) {//锁是过期的
                //假设多个线程(非单jvm)同时走到这里
                String oldValue = jedis.getSet(lockKey, stringOfLockExpireTime);//原子操作  
                // 但是走到这里时每个线程拿到的oldValue肯定不可能一样(因为getset是原子性的)  
                // 假如拿到的oldValue依然是expired的,那么就说明拿到锁了 
                if (oldValue != null && isTimeExpired(oldValue)) {//拿到锁
                    //设置相关标识
                    locked = true;
                    setExclusiveOwnerThread(Thread.currentThread());
                    return true;
                }
            }
            return false;
        }
    
        @Override
        public Condition newCondition() {
            // TODO Auto-generated method stub
            return null;
        }
    
        /**
         * 锁未过期,释放锁
         */
        @Override
        protected void unlock0() {
            // 判断锁是否过期  
            String value = jedis.get(lockKey);  
            if (!isTimeExpired(value)) {  
                doUnlock();  
            } 
        }
    
        /**
         * 释放锁
         * @date 2017-10-18
         */
        public void doUnlock() {
            jedis.del(lockKey);
        }
    
        /**
         * 查询当前的锁是否被别的线程占有
         * @return 被占有true,未被占有false
         * @date 2017-10-18
         */
        public boolean isLocked(){
            if (locked) {
                return true;
            }else {
                String value = jedis.get(lockKey);
                // TODO 这里其实是有问题的, 想:当get方法返回value后, 假设这个value已经是过期的了,  
                // 而就在这瞬间, 另一个节点set了value, 这时锁是被别的线程(节点持有), 而接下来的判断  
                // 是检测不出这种情况的.不过这个问题应该不会导致其它的问题出现, 因为这个方法的目的本来就  
                // 不是同步控制, 它只是一种锁状态的报告.  
                return !isTimeExpired(value);
            }
        }
    
        /**
         * 检测时间是否过期
         * @param value
         * @return
         * @date 2017-10-18
         */
        public boolean isTimeExpired(String value) {
            return Long.parseLong(value) < System.currentTimeMillis();  
        }
    
        /**
         * 阻塞式获取锁的实现
         * @param useTimeout 是否超时
         * @param time 获取锁的等待时间
         * @param unit 时间单位
         * @param interrupt 
         *            是否响应中断 
         */
        @Override
        protected boolean lock(boolean useTimeout, long time, TimeUnit unit,boolean interrupt) throws InterruptedException {
            if (interrupt) {
                checkInterruption();
            }
            long start = System.currentTimeMillis();
            long timeout = unit.toMillis(time);//
            while (useTimeout ? isTimeout(start, timeout) : true) {
                if (interrupt) {
                    checkInterruption();
                }
                long lockExpireTime = System.currentTimeMillis() + lockExpire + 1;//锁的超时时间
                String stringLockExpireTime = String.valueOf(lockExpireTime);
                if (jedis.setnx(lockKey, stringLockExpireTime) == 1) {//获取到锁
                    //成功获取到锁,设置相关标识
                    locked = true;
                    setExclusiveOwnerThread(Thread.currentThread());
                    return true;
                }
            }
            return false;
        }
    
        /*
         * 判断是否超时(开始时间+锁等待超时时间是否大于系统当前时间)
         */
        public boolean isTimeout(long start, long timeout) {
            return start + timeout > System.currentTimeMillis();
        }
    
        /*
         * 检查当前线程是否阻塞 
         */
        public void checkInterruption() throws InterruptedException {
            if (Thread.currentThread().isInterrupted()) {
                throw new InterruptedException();
            }
        }
    }

    redis操作工具类RedisUtil:

    package test;
    
    import java.util.List;  
    import java.util.Map;  
    import java.util.Set;  
    import org.slf4j.Logger;  
    import org.slf4j.LoggerFactory;  
    import redis.clients.jedis.BinaryClient.LIST_POSITION;  
    import redis.clients.jedis.Jedis;  
    import redis.clients.jedis.JedisPool;  
    import redis.clients.jedis.JedisPoolConfig;  
    
    public class RedisUtil {  
    
        private static final Logger LOGGER = LoggerFactory.getLogger(RedisUtil.class);  
    
        private static JedisPool pool = null;  
    
        private static RedisUtil ru = new RedisUtil();  
    
        public static void main(String[] args) {  
            RedisUtil redisUtil = RedisUtil.getInstance();  
            redisUtil.set("test", "test");  
            LOGGER.info(redisUtil.get("test"));  
        }  
    
        private RedisUtil() {  
            if (pool == null) {  
                String ip = "10.62.245.11";  
                int port = 6379;  
                JedisPoolConfig config = new JedisPoolConfig();  
                // 控制一个pool可分配多少个jedis实例,通过pool.getResource()来获取;  
                // 如果赋值为-1,则表示不限制;如果pool已经分配了maxActive个jedis实例,则此时pool的状态为exhausted(耗尽)。  
                config.setMaxTotal(10000);  
                // 控制一个pool最多有多少个状态为idle(空闲的)的jedis实例。  
                config.setMaxIdle(2000);  
                // 表示当borrow(引入)一个jedis实例时,最大的等待时间,如果超过等待时间,则直接抛出JedisConnectionException;  
                config.setMaxWaitMillis(1000 * 100);  
                config.setTestOnBorrow(true);  
                pool = new JedisPool(config, ip, port, 100000);  
            }  
    
        }  
    
        public Jedis getJedis() {  
            Jedis jedis = pool.getResource();  
            return jedis;  
        }  
    
        public static RedisUtil getInstance() {  
            return ru;  
        }  
    
        /** 
         * <p> 
         * 通过key获取储存在redis中的value 
         * </p> 
         * <p> 
         * 并释放连接 
         * </p> 
         *  
         * @param key 
         * @return 成功返回value 失败返回null 
         */  
        public String get(String key) {  
            Jedis jedis = null;  
            String value = null;  
            try {  
                jedis = pool.getResource();  
                value = jedis.get(key);  
            } catch (Exception e) {  
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return value;  
        }  
    
        /** 
         * <p> 
         * 向redis存入key和value,并释放连接资源 
         * </p> 
         * <p> 
         * 如果key已经存在 则覆盖 
         * </p> 
         *  
         * @param key 
         * @param value 
         * @return 成功 返回OK 失败返回 0 
         */  
        public String set(String key, String value) {  
            Jedis jedis = null;  
            try {  
                jedis = pool.getResource();  
                return jedis.set(key, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
                return "0";  
            } finally {  
                returnResource(pool, jedis);  
            }  
        }  
    
        /** 
         * <p> 
         * 删除指定的key,也可以传入一个包含key的数组 
         * </p> 
         *  
         * @param keys 
         *            一个key 也可以使 string 数组 
         * @return 返回删除成功的个数 
         */  
        public Long del(String... keys) {  
            Jedis jedis = null;  
            try {  
                jedis = pool.getResource();  
                return jedis.del(keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
                return 0L;  
            } finally {  
                returnResource(pool, jedis);  
            }  
        }  
    
        /** 
         * <p> 
         * 通过key向指定的value值追加值 
         * </p> 
         *  
         * @param key 
         * @param str 
         * @return 成功返回 添加后value的长度 失败 返回 添加的 value 的长度 异常返回0L 
         */  
        public Long append(String key, String str) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.append(key, str);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
                return 0L;  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 判断key是否存在 
         * </p> 
         *  
         * @param key 
         * @return true OR false 
         */  
        public Boolean exists(String key) {  
            Jedis jedis = null;  
            try {  
                jedis = pool.getResource();  
                return jedis.exists(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
                return false;  
            } finally {  
                returnResource(pool, jedis);  
            }  
        }  
    
        /** 
         * <p> 
         * 设置key value,如果key已经存在则返回0,nx==> not exist 
         * </p> 
         *  
         * @param key 
         * @param value 
         * @return 成功返回1 如果存在 和 发生异常 返回 0 
         */  
        public Long setnx(String key, String value) {  
            Jedis jedis = null;  
            try {  
                jedis = pool.getResource();  
                return jedis.setnx(key, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
                return 0L;  
            } finally {  
                returnResource(pool, jedis);  
            }  
        }  
    
        /** 
         * <p> 
         * 设置key value并制定这个键值的有效期 
         * </p> 
         *  
         * @param key 
         * @param value 
         * @param seconds 
         *            单位:秒 
         * @return 成功返回OK 失败和异常返回null 
         */  
        public String setex(String key, String value, int seconds) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.setex(key, seconds, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key 和offset 从指定的位置开始将原先value替换 
         * </p> 
         * <p> 
         * 下标从0开始,offset表示从offset下标开始替换 
         * </p> 
         * <p> 
         * 如果替换的字符串长度过小则会这样 
         * </p> 
         * <p> 
         * example: 
         * </p> 
         * <p> 
         * value : bigsea@zto.cn 
         * </p> 
         * <p> 
         * str : abc 
         * </p> 
         * <P> 
         * 从下标7开始替换 则结果为 
         * </p> 
         * <p> 
         * RES : bigsea.abc.cn 
         * </p> 
         *  
         * @param key 
         * @param str 
         * @param offset 
         *            下标位置 
         * @return 返回替换后 value 的长度 
         */  
        public Long setrange(String key, String str, int offset) {  
            Jedis jedis = null;  
            try {  
                jedis = pool.getResource();  
                return jedis.setrange(key, offset, str);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
                return 0L;  
            } finally {  
                returnResource(pool, jedis);  
            }  
        }  
    
        /** 
         * <p> 
         * 通过批量的key获取批量的value 
         * </p> 
         *  
         * @param keys 
         *            string数组 也可以是一个key 
         * @return 成功返回value的集合, 失败返回null的集合 ,异常返回空 
         */  
        public List<String> mget(String... keys) {  
            Jedis jedis = null;  
            List<String> values = null;  
            try {  
                jedis = pool.getResource();  
                values = jedis.mget(keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return values;  
        }  
    
        /** 
         * <p> 
         * 批量的设置key:value,可以一个 
         * </p> 
         * <p> 
         * example: 
         * </p> 
         * <p> 
         * obj.mset(new String[]{"key2","value1","key2","value2"}) 
         * </p> 
         *  
         * @param keysvalues 
         * @return 成功返回OK 失败 异常 返回 null 
         * 
         */  
        public String mset(String... keysvalues) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.mset(keysvalues);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 批量的设置key:value,可以一个,如果key已经存在则会失败,操作会回滚 
         * </p> 
         * <p> 
         * example: 
         * </p> 
         * <p> 
         * obj.msetnx(new String[]{"key2","value1","key2","value2"}) 
         * </p> 
         *  
         * @param keysvalues 
         * @return 成功返回1 失败返回0 
         */  
        public Long msetnx(String... keysvalues) {  
            Jedis jedis = null;  
            Long res = 0L;  
            try {  
                jedis = pool.getResource();  
                res = jedis.msetnx(keysvalues);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 设置key的值,并返回一个旧值 
         * </p> 
         *  
         * @param key 
         * @param value 
         * @return 旧值 如果key不存在 则返回null 
         */  
        public String getset(String key, String value) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.getSet(key, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过下标 和key 获取指定下标位置的 value 
         * </p> 
         *  
         * @param key 
         * @param startOffset 
         *            开始位置 从0 开始 负数表示从右边开始截取 
         * @param endOffset 
         * @return 如果没有返回null 
         */  
        public String getrange(String key, int startOffset, int endOffset) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.getrange(key, startOffset, endOffset);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key 对value进行加值+1操作,当value不是int类型时会返回错误,当key不存在是则value为1 
         * </p> 
         *  
         * @param key 
         * @return 加值后的结果 
         */  
        public Long incr(String key) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.incr(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key给指定的value加值,如果key不存在,则这是value为该值 
         * </p> 
         *  
         * @param key 
         * @param integer 
         * @return 
         */  
        public Long incrBy(String key, Long integer) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.incrBy(key, integer);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 对key的值做减减操作,如果key不存在,则设置key为-1 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Long decr(String key) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.decr(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 减去指定的值 
         * </p> 
         *  
         * @param key 
         * @param integer 
         * @return 
         */  
        public Long decrBy(String key, Long integer) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.decrBy(key, integer);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取value值的长度 
         * </p> 
         *  
         * @param key 
         * @return 失败返回null 
         */  
        public Long serlen(String key) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.strlen(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key给field设置指定的值,如果key不存在,则先创建 
         * </p> 
         *  
         * @param key 
         * @param field 
         *            字段 
         * @param value 
         * @return 如果存在返回0 异常返回null 
         */  
        public Long hset(String key, String field, String value) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hset(key, field, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key给field设置指定的值,如果key不存在则先创建,如果field已经存在,返回0 
         * </p> 
         *  
         * @param key 
         * @param field 
         * @param value 
         * @return 
         */  
        public Long hsetnx(String key, String field, String value) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hsetnx(key, field, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key同时设置 hash的多个field 
         * </p> 
         *  
         * @param key 
         * @param hash 
         * @return 返回OK 异常返回null 
         */  
        public String hmset(String key, Map<String, String> hash) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hmset(key, hash);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key 和 field 获取指定的 value 
         * </p> 
         *  
         * @param key 
         * @param field 
         * @return 没有返回null 
         */  
        public String hget(String key, String field) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hget(key, field);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key 和 fields 获取指定的value 如果没有对应的value则返回null 
         * </p> 
         *  
         * @param key 
         * @param fields 
         *            可以使 一个String 也可以是 String数组 
         * @return 
         */  
        public List<String> hmget(String key, String... fields) {  
            Jedis jedis = null;  
            List<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hmget(key, fields);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key给指定的field的value加上给定的值 
         * </p> 
         *  
         * @param key 
         * @param field 
         * @param value 
         * @return 
         */  
        public Long hincrby(String key, String field, Long value) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hincrBy(key, field, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key和field判断是否有指定的value存在 
         * </p> 
         *  
         * @param key 
         * @param field 
         * @return 
         */  
        public Boolean hexists(String key, String field) {  
            Jedis jedis = null;  
            Boolean res = false;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hexists(key, field);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回field的数量 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Long hlen(String key) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hlen(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
    
        }  
    
        /** 
         * <p> 
         * 通过key 删除指定的 field 
         * </p> 
         *  
         * @param key 
         * @param fields 
         *            可以是 一个 field 也可以是 一个数组 
         * @return 
         */  
        public Long hdel(String key, String... fields) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hdel(key, fields);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回所有的field 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Set<String> hkeys(String key) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hkeys(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回所有和key有关的value 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public List<String> hvals(String key) {  
            Jedis jedis = null;  
            List<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hvals(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取所有的field和value 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Map<String, String> hgetall(String key) {  
            Jedis jedis = null;  
            Map<String, String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.hgetAll(key);  
            } catch (Exception e) {  
                // TODO  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key向list头部添加字符串 
         * </p> 
         *  
         * @param key 
         * @param strs 
         *            可以使一个string 也可以使string数组 
         * @return 返回list的value个数 
         */  
        public Long lpush(String key, String... strs) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.lpush(key, strs);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key向list尾部添加字符串 
         * </p> 
         *  
         * @param key 
         * @param strs 
         *            可以使一个string 也可以使string数组 
         * @return 返回list的value个数 
         */  
        public Long rpush(String key, String... strs) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.rpush(key, strs);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key在list指定的位置之前或者之后 添加字符串元素 
         * </p> 
         *  
         * @param key 
         * @param where 
         *            LIST_POSITION枚举类型 
         * @param pivot 
         *            list里面的value 
         * @param value 
         *            添加的value 
         * @return 
         */  
        public Long linsert(String key, LIST_POSITION where, String pivot, String value) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.linsert(key, where, pivot, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key设置list指定下标位置的value 
         * </p> 
         * <p> 
         * 如果下标超过list里面value的个数则报错 
         * </p> 
         *  
         * @param key 
         * @param index 
         *            从0开始 
         * @param value 
         * @return 成功返回OK 
         */  
        public String lset(String key, Long index, String value) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.lset(key, index, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key从对应的list中删除指定的count个 和 value相同的元素 
         * </p> 
         *  
         * @param key 
         * @param count 
         *            当count为0时删除全部 
         * @param value 
         * @return 返回被删除的个数 
         */  
        public Long lrem(String key, long count, String value) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.lrem(key, count, value);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key保留list中从strat下标开始到end下标结束的value值 
         * </p> 
         *  
         * @param key 
         * @param start 
         * @param end 
         * @return 成功返回OK 
         */  
        public String ltrim(String key, long start, long end) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.ltrim(key, start, end);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key从list的头部删除一个value,并返回该value 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        synchronized public String lpop(String key) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.lpop(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key从list尾部删除一个value,并返回该元素 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        synchronized public String rpop(String key) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.rpop(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key从一个list的尾部删除一个value并添加到另一个list的头部,并返回该value 
         * </p> 
         * <p> 
         * 如果第一个list为空或者不存在则返回null 
         * </p> 
         *  
         * @param srckey 
         * @param dstkey 
         * @return 
         */  
        public String rpoplpush(String srckey, String dstkey) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.rpoplpush(srckey, dstkey);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取list中指定下标位置的value 
         * </p> 
         *  
         * @param key 
         * @param index 
         * @return 如果没有返回null 
         */  
        public String lindex(String key, long index) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.lindex(key, index);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回list的长度 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Long llen(String key) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.llen(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取list指定下标位置的value 
         * </p> 
         * <p> 
         * 如果start 为 0 end 为 -1 则返回全部的list中的value 
         * </p> 
         *  
         * @param key 
         * @param start 
         * @param end 
         * @return 
         */  
        public List<String> lrange(String key, long start, long end) {  
            Jedis jedis = null;  
            List<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.lrange(key, start, end);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key向指定的set中添加value 
         * </p> 
         *  
         * @param key 
         * @param members 
         *            可以是一个String 也可以是一个String数组 
         * @return 添加成功的个数 
         */  
        public Long sadd(String key, String... members) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sadd(key, members);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key删除set中对应的value值 
         * </p> 
         *  
         * @param key 
         * @param members 
         *            可以是一个String 也可以是一个String数组 
         * @return 删除的个数 
         */  
        public Long srem(String key, String... members) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.srem(key, members);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key随机删除一个set中的value并返回该值 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public String spop(String key) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.spop(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取set中的差集 
         * </p> 
         * <p> 
         * 以第一个set为标准 
         * </p> 
         *  
         * @param keys 
         *            可以使一个string 则返回set中所有的value 也可以是string数组 
         * @return 
         */  
        public Set<String> sdiff(String... keys) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sdiff(keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取set中的差集并存入到另一个key中 
         * </p> 
         * <p> 
         * 以第一个set为标准 
         * </p> 
         *  
         * @param dstkey 
         *            差集存入的key 
         * @param keys 
         *            可以使一个string 则返回set中所有的value 也可以是string数组 
         * @return 
         */  
        public Long sdiffstore(String dstkey, String... keys) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sdiffstore(dstkey, keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取指定set中的交集 
         * </p> 
         *  
         * @param keys 
         *            可以使一个string 也可以是一个string数组 
         * @return 
         */  
        public Set<String> sinter(String... keys) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sinter(keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取指定set中的交集 并将结果存入新的set中 
         * </p> 
         *  
         * @param dstkey 
         * @param keys 
         *            可以使一个string 也可以是一个string数组 
         * @return 
         */  
        public Long sinterstore(String dstkey, String... keys) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sinterstore(dstkey, keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回所有set的并集 
         * </p> 
         *  
         * @param keys 
         *            可以使一个string 也可以是一个string数组 
         * @return 
         */  
        public Set<String> sunion(String... keys) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sunion(keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回所有set的并集,并存入到新的set中 
         * </p> 
         *  
         * @param dstkey 
         * @param keys 
         *            可以使一个string 也可以是一个string数组 
         * @return 
         */  
        public Long sunionstore(String dstkey, String... keys) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sunionstore(dstkey, keys);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key将set中的value移除并添加到第二个set中 
         * </p> 
         *  
         * @param srckey 
         *            需要移除的 
         * @param dstkey 
         *            添加的 
         * @param member 
         *            set中的value 
         * @return 
         */  
        public Long smove(String srckey, String dstkey, String member) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.smove(srckey, dstkey, member);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取set中value的个数 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Long scard(String key) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.scard(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key判断value是否是set中的元素 
         * </p> 
         *  
         * @param key 
         * @param member 
         * @return 
         */  
        public Boolean sismember(String key, String member) {  
            Jedis jedis = null;  
            Boolean res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.sismember(key, member);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取set中随机的value,不删除元素 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public String srandmember(String key) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.srandmember(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取set中所有的value 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Set<String> smembers(String key) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.smembers(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key向zset中添加value,score,其中score就是用来排序的 
         * </p> 
         * <p> 
         * 如果该value已经存在则根据score更新元素 
         * </p> 
         *  
         * @param key 
         * @param score 
         * @param member 
         * @return 
         */  
        public Long zadd(String key, double score, String member) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zadd(key, score, member);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key删除在zset中指定的value 
         * </p> 
         *  
         * @param key 
         * @param members 
         *            可以使一个string 也可以是一个string数组 
         * @return 
         */  
        public Long zrem(String key, String... members) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zrem(key, members);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key增加该zset中value的score的值 
         * </p> 
         *  
         * @param key 
         * @param score 
         * @param member 
         * @return 
         */  
        public Double zincrby(String key, double score, String member) {  
            Jedis jedis = null;  
            Double res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zincrby(key, score, member);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回zset中value的排名 
         * </p> 
         * <p> 
         * 下标从小到大排序 
         * </p> 
         *  
         * @param key 
         * @param member 
         * @return 
         */  
        public Long zrank(String key, String member) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zrank(key, member);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回zset中value的排名 
         * </p> 
         * <p> 
         * 下标从大到小排序 
         * </p> 
         *  
         * @param key 
         * @param member 
         * @return 
         */  
        public Long zrevrank(String key, String member) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zrevrank(key, member);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key将获取score从start到end中zset的value 
         * </p> 
         * <p> 
         * socre从大到小排序 
         * </p> 
         * <p> 
         * 当start为0 end为-1时返回全部 
         * </p> 
         *  
         * @param key 
         * @param start 
         * @param end 
         * @return 
         */  
        public Set<String> zrevrange(String key, long start, long end) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zrevrange(key, start, end);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回指定score内zset中的value 
         * </p> 
         *  
         * @param key 
         * @param max 
         * @param min 
         * @return 
         */  
        public Set<String> zrangebyscore(String key, String max, String min) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zrevrangeByScore(key, max, min);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回指定score内zset中的value 
         * </p> 
         *  
         * @param key 
         * @param max 
         * @param min 
         * @return 
         */  
        public Set<String> zrangeByScore(String key, double max, double min) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zrevrangeByScore(key, max, min);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 返回指定区间内zset中value的数量 
         * </p> 
         *  
         * @param key 
         * @param min 
         * @param max 
         * @return 
         */  
        public Long zcount(String key, String min, String max) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zcount(key, min, max);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key返回zset中的value个数 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public Long zcard(String key) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zcard(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key获取zset中value的score值 
         * </p> 
         *  
         * @param key 
         * @param member 
         * @return 
         */  
        public Double zscore(String key, String member) {  
            Jedis jedis = null;  
            Double res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zscore(key, member);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key删除给定区间内的元素 
         * </p> 
         *  
         * @param key 
         * @param start 
         * @param end 
         * @return 
         */  
        public Long zremrangeByRank(String key, long start, long end) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zremrangeByRank(key, start, end);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key删除指定score内的元素 
         * </p> 
         *  
         * @param key 
         * @param start 
         * @param end 
         * @return 
         */  
        public Long zremrangeByScore(String key, double start, double end) {  
            Jedis jedis = null;  
            Long res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.zremrangeByScore(key, start, end);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 返回满足pattern表达式的所有key 
         * </p> 
         * <p> 
         * keys(*) 
         * </p> 
         * <p> 
         * 返回所有的key 
         * </p> 
         *  
         * @param pattern 
         * @return 
         */  
        public Set<String> keys(String pattern) {  
            Jedis jedis = null;  
            Set<String> res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.keys(pattern);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * <p> 
         * 通过key判断值得类型 
         * </p> 
         *  
         * @param key 
         * @return 
         */  
        public String type(String key) {  
            Jedis jedis = null;  
            String res = null;  
            try {  
                jedis = pool.getResource();  
                res = jedis.type(key);  
            } catch (Exception e) {  
    
                LOGGER.error(e.getMessage());  
            } finally {  
                returnResource(pool, jedis);  
            }  
            return res;  
        }  
    
        /** 
         * 返还到连接池 
         * 
         * @param pool 
         * @param jedis 
         */  
        public static void returnResource(JedisPool pool, Jedis jedis) {  
            if (jedis != null) {  
                pool.returnResourceObject(jedis);  
            }  
        }  
    
        /** 
         * 返还到连接池 
         * 
         * @param pool 
         * @param jedis 
         */  
        public static void returnResource(Jedis jedis) {  
            if (jedis != null) {  
                pool.returnResourceObject(jedis);  
            }  
        }  
    }

    六、总结

    实现步骤: 

    1)初始化商品(将商品数目添加到redis中) 
    2)内部类:消费者线程(模拟一个线程抢购商品:开启redis事务,商品数量减一,提交事务,对抢到的商品做记录) 
    3)初始化秒杀操作(根据顾客数目,模拟和顾客数目相等的消费者线程) 
    4)打印秒杀结果 
    5)记录程序运行时间

      悲观锁实现和乐观锁实现大体步骤都是一样的,唯一的区别就在消费者线程抢购商品时使用的锁

    乐观锁的实现: 
      乐观锁实现中的锁就是商品的键值对。使用jedis的watch方法监视商品键值对,如果事务提交exec时发现监视的键值对发生变化,事务将被取消,商品数目不会被改动。

    悲观锁实现: 
      悲观锁中的锁是一个唯一标识的锁lockKey和该锁的过期时间。首先确定缓存中有商品,然后在拿数据(商品数目改动)之前先获取到锁,之后对商品数目进行减一操作,操作完成释放锁,一个秒杀操作完成。这个锁是基于redis的setNX操作实现的阻塞式分布式锁

    import java.util.Set; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; import redis.clients.jedis.Jedis; import test.OptimisticLockTest.ClientThread; publicclass PessimisticLockTest {publicstaticvoidmain(String[] args) { long startTime = System.currentTimeMillis(); initProduct(); initClient(); printResult(); long endTime = System.currentTimeMillis(); long time = endTime - startTime; System.out.println("程序运行时间 : " + (int)time + "ms"); } /** * 初始化商品 * @date 2017-10-17 */publicstaticvoidinitProduct() { int prdNum = 100;//商品个数 String key = "prdNum"; String clientList = "clientList";//抢购到商品的顾客列表 Jedis jedis = RedisUtil.getInstance().getJedis(); if (jedis.exists(key)) { jedis.del(key); } if (jedis.exists(clientList)) { jedis.del(clientList); } jedis.set(key, String.valueOf(prdNum));//初始化商品 RedisUtil.returnResource(jedis); } /** * 顾客抢购商品(秒杀操作) * @date 2017-10-17 */publicstaticvoidinitClient() { ExecutorService cachedThreadPool = Executors.newCachedThreadPool(); int clientNum = 10000;//模拟顾客数目for (int i = 0; i < clientNum; i++) { cachedThreadPool.execute(new ClientThread(i));//启动与顾客数目相等的消费者线程 } cachedThreadPool.shutdown();//关闭线程池while (true) { if (cachedThreadPool.isTerminated()) { System.out.println("所有的消费者线程均结束了"); break; } try { Thread.sleep(100); } catch (Exception e) { // TODO: handle exception } } } /** * 打印抢购结果 * @date 2017-10-17 */publicstaticvoidprintResult() { Jedis jedis = RedisUtil.getInstance().getJedis(); Set<String> set = jedis.smembers("clientList"); int i = 1; for (String value : set) { System.out.println("第" + i++ + "个抢到商品,"+value + " "); } RedisUtil.returnResource(jedis); } /** * 消费者线程 */static class PessClientThread implements Runnable{ String key = "prdNum";//商品主键 String clientList = "clientList";//抢购到商品的顾客列表 String clientName; Jedis jedis = null; RedisBasedDistributedLock redisBasedDistributedLock; publicPessClientThread(int num){ clientName = "编号=" + num; init(); } publicvoidinit() { jedis = RedisUtil.getInstance().getJedis(); redisBasedDistributedLock = new RedisBasedDistributedLock(jedis, "lock.lock", 5 * 1000); } @Overridepublicvoidrun() { try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } while (true) { if (Integer.parseInt(jedis.get(key)) <= 0) { break;//缓存中没有商品,跳出循环,消费者线程执行完毕 } //缓存中还有商品,取锁,商品数目减一 System.out.println("顾客:" + clientName + "开始抢商品"); if (redisBasedDistributedLock.tryLock(3,TimeUnit.SECONDS)) {//等待3秒获取锁,否则返回false(悲观锁:每次拿数据都上锁)int prdNum = Integer.parseInt(jedis.get(key));//再次取得商品缓存数目if (prdNum > 0) { jedis.decr(key);//商品数减一 jedis.sadd(clientList, clientName);//将抢购到商品的顾客记录一下 System.out.println("恭喜,顾客:" + clientName + "抢到商品"); } else { System.out.println("抱歉,库存为0,顾客:" + clientName + "没有抢到商品"); } redisBasedDistributedLock.unlock0();//操作完成释放锁break; } } //释放资源 redisBasedDistributedLock = null; RedisUtil.returnResource(jedis); } } }

  • 相关阅读:
    使用Pandas groupby连接来自多行的字符串
    Pandas数据分析介绍
    SQL Server 32位数据源与64位数据源区别
    SQL Server install
    windows 远程提示CredSSP
    linux 终端下以图形界面打开当前文件夹
    Linux g++ include link
    undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'
    Linux下的库操作工具-nm、ar、ldd、ldconfig和ld.so
    git update
  • 原文地址:https://www.cnblogs.com/jasonZh/p/9522772.html
Copyright © 2011-2022 走看看