Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use List<KeyValue> to read RESP3 Map reply (#3456)
When implementing RESP3, I converted the Redis Map reply (map{k1->v1, k2->v2, ...}) to simple flat array (list{k1, v1, k2, v2, ...}). In this PR, I have converted the Map reply to array of KeyValues (list{ kv{k1, v1}, kv{k2, v2}, ...}). As a by-product of this PR, some commands were found where the return can/should be a Map instead of a List. --- * Use List<KeyValue> to read RESP3 Map reply * module replies * fix lcs * fix xinfo * fix moduleList * fix timeoutConnection * fix aclLog already fixed * edit * fix moduleList * fix encodeCompleteResponse * Fix tsInfoDebug after timeseries update * remove commented code * docs and test edit
- Loading branch information