From 9da7c4cd82f4f93f3ed340ca1f48e27e2a0bc508 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 26 Mar 2022 19:30:43 +0100 Subject: [PATCH] redis tests - hashes --- .../net/krakatoa/proxy/redis/RedisHashCommands.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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); }