Skip to content

Commit

Permalink
Merge branch 'master' into json-resp3-2
Browse files Browse the repository at this point in the history
  • Loading branch information
sazzad16 committed Jun 11, 2023
2 parents a8dd82f + 7a68df8 commit 725ddf6
Show file tree
Hide file tree
Showing 36 changed files with 1,075 additions and 517 deletions.
8 changes: 8 additions & 0 deletions docs/jedis5-breaking.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
- `zunion(ZParams params, byte[]... keys)` method now returns `List<byte[]>` (instead of `Set<byte[]>`).
- Both `zunionWithScores(ZParams params, String... keys)` and `zunionWithScores(ZParams params, byte[]... keys)` methods now return `List<Tuple>` (instead of `Set<Tuple>`).

- Both `configGet(String pattern)` and `configGet(String... patterns)` methods now return `Map<String, String>` instead of `List<String>`.
- Both `configGet(byte[] pattern)` and `configGet(byte[]... patterns)` methods now return `Map<byte[], byte[]>` instead of `List<byte[]>`.

- New `aclDelUser(String... names)` method replaces `aclDelUser(String name)` and `aclDelUser(String name, String... names)` methods.
- New `aclDelUser(byte[]... names)` method replaces `aclDelUser(byte[] name)` and `aclDelUser(byte[] name, byte[]... names)` methods.

- `tsMGet(TSMGetParams multiGetParams, String... filters)` method now returns `Map<String, TSMGetElement>` instead of `List<TSKeyValue<TSElement>>`.

- Following methods now return `Map<String, TSMRangeElements>` instead of `List<TSKeyedElements>`:
Expand Down Expand Up @@ -74,6 +80,8 @@

- `addCommandEncodedArguments` and `addCommandBinaryArguments` methods have been removed from `FieldName` class.

- `getArgs` method is removed from `AggregationBuilder` class.

- `limit` and `getArgs` methods have been removed from `Group` class.

- `Reducer` abstract class is refactored:
Expand Down
Loading

0 comments on commit 725ddf6

Please sign in to comment.