java110
2020-10-22 17764bd12c42512189ea5c71fac8be2614fb7589
java110-core/src/main/java/com/java110/core/cache/Java110RedisCacheWriter.java
@@ -53,7 +53,9 @@
        Assert.notNull(name, "Name must not be null!");
        Assert.notNull(key, "Key must not be null!");
        Assert.notNull(value, "Value must not be null!");
        if (value == null) {
            return;
        }
        execute(name, connection -> {
@@ -77,6 +79,7 @@
            return "OK";
        });
    }
    /*
     * (non-Javadoc)
     * @see org.springframework.data.redis.cache.RedisCacheWriter#get(java.lang.String, byte[])