spring-data-redis ReactiveValueOperations 源码
spring-data-redis ReactiveValueOperations 代码
文件路径:/src/main/java/org/springframework/data/redis/core/ReactiveValueOperations.java
/*
* Copyright 2017-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.redis.core;
import reactor.core.publisher.Mono;
import java.time.Duration;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import org.springframework.data.redis.connection.BitFieldSubCommands;
/**
* Reactive Redis operations for simple (or in Redis terminology 'string') values.
*
* @author Mark Paluch
* @author Jiahe Cai
* @since 2.0
*/
public interface ReactiveValueOperations<K, V> {
/**
* Set {@code value} for {@code key}.
*
* @param key must not be {@literal null}.
* @param value
* @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
*/
Mono<Boolean> set(K key, V value);
/**
* Set the {@code value} and expiration {@code timeout} for {@code key}.
*
* @param key must not be {@literal null}.
* @param value
* @param timeout must not be {@literal null}.
* @see <a href="https://redis.io/commands/setex">Redis Documentation: SETEX</a>
*/
Mono<Boolean> set(K key, V value, Duration timeout);
/**
* Set {@code key} to hold the string {@code value} if {@code key} is absent.
*
* @param key must not be {@literal null}.
* @param value
* @see <a href="https://redis.io/commands/setnx">Redis Documentation: SETNX</a>
*/
Mono<Boolean> setIfAbsent(K key, V value);
/**
* Set {@code key} to hold the string {@code value} and expiration {@code timeout} if {@code key} is absent.
*
* @param key must not be {@literal null}.
* @param value
* @param timeout must not be {@literal null}.
* @since 2.1
* @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
*/
Mono<Boolean> setIfAbsent(K key, V value, Duration timeout);
/**
* Set {@code key} to hold the string {@code value} if {@code key} is present.
*
* @param key must not be {@literal null}.
* @param value
* @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
*/
Mono<Boolean> setIfPresent(K key, V value);
/**
* Set {@code key} to hold the string {@code value} and expiration {@code timeout} if {@code key} is present.
*
* @param key must not be {@literal null}.
* @param value
* @param timeout must not be {@literal null}.
* @since 2.1
* @see <a href="https://redis.io/commands/set">Redis Documentation: SET</a>
*/
Mono<Boolean> setIfPresent(K key, V value, Duration timeout);
/**
* Set multiple keys to multiple values using key-value pairs provided in {@code tuple}.
*
* @param map must not be {@literal null}.
* @see <a href="https://redis.io/commands/mset">Redis Documentation: MSET</a>
*/
Mono<Boolean> multiSet(Map<? extends K, ? extends V> map);
/**
* Set multiple keys to multiple values using key-value pairs provided in {@code tuple} only if the provided key does
* not exist.
*
* @param map must not be {@literal null}.
* @see <a href="https://redis.io/commands/msetnx">Redis Documentation: MSETNX</a>
*/
Mono<Boolean> multiSetIfAbsent(Map<? extends K, ? extends V> map);
/**
* Get the value of {@code key}.
*
* @param key must not be {@literal null}.
* @see <a href="https://redis.io/commands/get">Redis Documentation: GET</a>
*/
Mono<V> get(Object key);
/**
* Return the value at {@code key} and delete the key.
*
* @param key must not be {@literal null}.
* @see <a href="https://redis.io/commands/getdel">Redis Documentation: GETDEL</a>
* @since 2.6
*/
Mono<V> getAndDelete(K key);
/**
* Return the value at {@code key} and expire the key by applying {@code timeout}.
*
* @param key must not be {@literal null}.
* @param timeout must not be {@literal null}.
* @see <a href="https://redis.io/commands/getex">Redis Documentation: GETEX</a>
* @since 2.6
*/
Mono<V> getAndExpire(K key, Duration timeout);
/**
* Return the value at {@code key} and persist the key. This operation removes any TTL that is associated with
* {@code key}.
*
* @param key must not be {@literal null}.
* @see <a href="https://redis.io/commands/getex">Redis Documentation: GETEX</a>
* @since 2.6
*/
Mono<V> getAndPersist(K key);
/**
* Set {@code value} of {@code key} and return its old value.
*
* @param key must not be {@literal null}.
* @see <a href="https://redis.io/commands/getset">Redis Documentation: GETSET</a>
*/
Mono<V> getAndSet(K key, V value);
/**
* Get multiple {@code keys}. Values are returned in the order of the requested keys.
*
* @param keys must not be {@literal null}.
* @see <a href="https://redis.io/commands/mget">Redis Documentation: MGET</a>
*/
Mono<List<V>> multiGet(Collection<K> keys);
/**
* Increments the number stored at {@code key} by one.
*
* @param key must not be {@literal null}.
* @since 2.1
* @see <a href="https://redis.io/commands/incr">Redis Documentation: INCR</a>
*/
Mono<Long> increment(K key);
/**
* Increments the number stored at {@code key} by {@code delta}.
*
* @param key must not be {@literal null}.
* @param delta
* @since 2.1
* @see <a href="https://redis.io/commands/incrby">Redis Documentation: INCRBY</a>
*/
Mono<Long> increment(K key, long delta);
/**
* Increment the string representing a floating point number stored at {@code key} by {@code delta}.
*
* @param key must not be {@literal null}.
* @param delta
* @since 2.1
* @see <a href="https://redis.io/commands/incrbyfloat">Redis Documentation: INCRBYFLOAT</a>
*/
Mono<Double> increment(K key, double delta);
/**
* Decrements the number stored at {@code key} by one.
*
* @param key must not be {@literal null}.
* @since 2.1
* @see <a href="https://redis.io/commands/decr">Redis Documentation: DECR</a>
*/
Mono<Long> decrement(K key);
/**
* Decrements the number stored at {@code key} by {@code delta}.
*
* @param key must not be {@literal null}.
* @param delta
* @since 2.1
* @see <a href="https://redis.io/commands/decrby">Redis Documentation: DECRBY</a>
*/
Mono<Long> decrement(K key, long delta);
/**
* Append a {@code value} to {@code key}.
*
* @param key must not be {@literal null}.
* @param value
* @see <a href="https://redis.io/commands/append">Redis Documentation: APPEND</a>
*/
Mono<Long> append(K key, String value);
/**
* Get a substring of value of {@code key} between {@code begin} and {@code end}.
*
* @param key must not be {@literal null}.
* @param start
* @param end
* @see <a href="https://redis.io/commands/getrange">Redis Documentation: GETRANGE</a>
*/
Mono<String> get(K key, long start, long end);
/**
* Overwrite parts of {@code key} starting at the specified {@code offset} with given {@code value}.
*
* @param key must not be {@literal null}.
* @param value
* @param offset
* @see <a href="https://redis.io/commands/setrange">Redis Documentation: SETRANGE</a>
*/
Mono<Long> set(K key, V value, long offset);
/**
* Get the length of the value stored at {@code key}.
*
* @param key must not be {@literal null}.
* @see <a href="https://redis.io/commands/strlen">Redis Documentation: STRLEN</a>
*/
Mono<Long> size(K key);
/**
* Sets the bit at {@code offset} in value stored at {@code key}.
*
* @param key must not be {@literal null}.
* @param offset
* @param value
* @see <a href="https://redis.io/commands/setbit">Redis Documentation: SETBIT</a>
*/
Mono<Boolean> setBit(K key, long offset, boolean value);
/**
* « Get the bit value at {@code offset} of value at {@code key}.
*
* @param key must not be {@literal null}.
* @param offset
* @see <a href="https://redis.io/commands/getbit">Redis Documentation: GETBIT</a>
*/
Mono<Boolean> getBit(K key, long offset);
/**
* Get / Manipulate specific integer fields of varying bit widths and arbitrary non (necessary) aligned offset stored
* at a given {@code key}.
*
* @param key must not be {@literal null}.
* @param command must not be {@literal null}.
* @return
* @since 2.1
*/
Mono<List<Long>> bitField(K key, BitFieldSubCommands command);
/**
* Removes the given {@literal key}.
*
* @param key must not be {@literal null}.
*/
Mono<Boolean> delete(K key);
}
相关信息
相关文章
spring-data-redis AbstractOperations 源码
spring-data-redis BoundGeoOperations 源码
spring-data-redis BoundHashOperations 源码
spring-data-redis BoundKeyOperations 源码
spring-data-redis BoundListOperations 源码
spring-data-redis BoundOperationsProxyFactory 源码
spring-data-redis BoundSetOperations 源码
spring-data-redis BoundStreamOperations 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦