diff --git a/src/main/java/net/krakatoa/proxy/redis/RedisHashCommands.java b/src/main/java/net/krakatoa/proxy/redis/RedisHashCommands.java index 7b25c46..df6ecdf 100644 --- a/src/main/java/net/krakatoa/proxy/redis/RedisHashCommands.java +++ b/src/main/java/net/krakatoa/proxy/redis/RedisHashCommands.java @@ -1,18 +1,14 @@ package net.krakatoa.proxy.redis; -import io.lettuce.core.Value; import io.lettuce.core.dynamic.Commands; -import io.lettuce.core.dynamic.annotation.Key; -import java.util.Map; -import reactor.core.publisher.Mono; public interface RedisHashCommands extends Commands { - Mono hdel(Key key, Key... fields); + //Mono hdel(Key key, Key... fields); - Mono hset(Key key, Key field, Value value); + //Mono hset(Key key, Key field, Value value); Boolean hset(String key, String field, String value); - Mono hmset(Key key, Map map); + //Mono hmset(Key key, Map map); }