Fix incorrect reference to SETNX in ReactiveValueOperations.setIfAbsent

Original pull request: #3047
Closes #3047
This commit is contained in:
vaan_oxo
2024-11-19 16:22:15 +09:00
committed by Marcin Grzejszczak
parent 6853b6bb92
commit 92eda5a924

View File

@@ -63,7 +63,7 @@ public interface ReactiveValueOperations<K, V> {
*
* @param key must not be {@literal null}.
* @param value
* @see <a href="https://redis.io/commands/setnx">Redis Documentation: SETNX</a>
* @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
*/
Mono<Boolean> setIfAbsent(K key, V value);