Open
Description
Description
All clients return batch response as object[]
without
- type checking for each entry
- type conversion where it is relevant
For example, for DEL
command, the value in the response array is object, not a number (so value comparison requires type casting). Some commands with complex responses have response conversion for usability and it is also missing for batch responses (e.g. FUNCTION STATS
).
Checklist
- C# - C#: Add response checks for batch for every command #3803
- java
- node
- python
- go
Additional Notes
Related to #2147