When using Spring Data Redis Reactive, the following code snippet causes an issue
val valueOperations = stringRedisTemplate.opsForValue()
valueOperations.multiGetAndAwait(emptyList())
The expectation is that the response will be Mono.empty(), but instead, the error "keys must not be empty" is thrown.
Is it not recommended to return an empty Mono or Flux in reactive programming?