public class RedisReactiveCache<E> extends Object implements ReactiveCache<E>
| 构造器和说明 |
|---|
RedisReactiveCache(String redisKey,
org.springframework.data.redis.core.ReactiveRedisOperations<Object,Object> operations,
ReactiveCache<E> localCache) |
| 限定符和类型 | 方法和说明 |
|---|---|
reactor.core.publisher.Mono<Void> |
clear() |
reactor.core.publisher.Mono<Void> |
evict(Object key) |
reactor.core.publisher.Mono<Void> |
evictAll(Iterable<?> key) |
reactor.core.publisher.Flux<E> |
getAll(Object... keys) |
reactor.core.publisher.Flux<E> |
getFlux(Object key) |
reactor.core.publisher.Mono<E> |
getMono(Object key) |
protected <T> reactor.core.publisher.Mono<T> |
handleError(Throwable error) |
reactor.core.publisher.Mono<Void> |
put(Object key,
org.reactivestreams.Publisher<E> data) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitflux, monopublic RedisReactiveCache(String redisKey, org.springframework.data.redis.core.ReactiveRedisOperations<Object,Object> operations, ReactiveCache<E> localCache)
public reactor.core.publisher.Flux<E> getFlux(Object key)
getFlux 在接口中 ReactiveCache<E>protected <T> reactor.core.publisher.Mono<T> handleError(Throwable error)
public reactor.core.publisher.Mono<E> getMono(Object key)
getMono 在接口中 ReactiveCache<E>public reactor.core.publisher.Mono<Void> put(Object key, org.reactivestreams.Publisher<E> data)
put 在接口中 ReactiveCache<E>public reactor.core.publisher.Mono<Void> evictAll(Iterable<?> key)
evictAll 在接口中 ReactiveCache<E>public reactor.core.publisher.Flux<E> getAll(Object... keys)
getAll 在接口中 ReactiveCache<E>public reactor.core.publisher.Mono<Void> evict(Object key)
evict 在接口中 ReactiveCache<E>public reactor.core.publisher.Mono<Void> clear()
clear 在接口中 ReactiveCache<E>Copyright © 2016–2022. All rights reserved.