feat(client): add VRANGE command for vector sets by nkaradzhov · Pull Request #3158 · redis/node-redis

@nkaradzhov

Implement the VRANGE command which returns elements in a lexicographical
range from a vector set. This provides a stateless iterator for elements
inside a vector set.

The command supports:
- Lexicographical range with inclusive ([) and exclusive (() prefixes
- Special range markers: - (minimum) and + (maximum)
- Optional count parameter to limit results (negative returns all)

Added comprehensive tests including parseCommand unit tests and
integration tests for both RESP2 and RESP3 protocols.

PavelPashov