I love the new Redis Streams support, thanks!
But I have a problem when passing in useApproximateMaxLength true.
This does not work (useApproximateMaxLength: true):
- redis.Database().StreamAddAsync("abc", "data", value, maxLength: 10, useApproximateMaxLength: true, CommandFlags.None);
Redis gives "ERR wrong number of arguments for XADD".
This works (same call but with useApproximateMaxLength: false)
- redis.Database().StreamAddAsync("abc", "data", value, maxLength: 10, useApproximateMaxLength: false, CommandFlags.None);