Skip to content

Commit

Permalink
feature: support hkeys protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
funky-eyes committed Apr 22, 2024
1 parent 71e5433 commit 840517c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/
package icu.funkye.redispike.protocol.request.hash;

import java.util.ArrayList;
import java.util.List;

import icu.funkye.redispike.protocol.AbstractRedisRequest;
Expand All @@ -26,7 +27,7 @@ public class HKeysRequest extends AbstractRedisRequest<String> {

String key;

BulkResponse response = new BulkResponse();
BulkResponse response = new BulkResponse(new ArrayList<>());

public HKeysRequest(List<String> params, boolean flush) {
this.flush = flush;
Expand Down

0 comments on commit 840517c

Please sign in to comment.