648540858
2022-07-19 28b5cc39d0a2d9939f70b4c980a31d9b27fc1e4c
src/main/java/com/genersoft/iot/vmp/utils/redis/RedisUtil.java
@@ -661,6 +661,24 @@
    }
    /**
     * 在键为 key 的 list中移除第一个元素
     * @param key 键
     * @return
     */
    public Object lLeftPop(String key) {
        return redisTemplate.opsForList().leftPop(key);
    }
    /**
     * 在键为 key 的 list中移除、最后一个元素
     * @param key 键
     * @return
     */
    public Object lrightPop(String key) {
        return redisTemplate.opsForList().rightPop(key);
    }
    /**
     * 模糊查询
     * @param key 键
     * @return true / false