You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should deprecate all StreamChannel methods on the reactive API as this pattern is discouraged in favor of directly streaming commands through the resulting Publisher. Methods such as hmget should return directly Flux<KeyValue<K, V>> instead of Mono<Map<K, V>> to enable streaming capabilities.
The text was updated successfully, but these errors were encountered:
Reactive methods accepting a StreamChannel argument are now deprecated in favor of using the variant returning Flux<T> to consume large results using streaming. All methods that are likely to return large results (e.g. hgetall) are stream-enabled and there's no need to use a stream bridge that would work like an aggregator or collector. Using Publisher is idiomatic in reactive programming arrangements.
Async and sync methods accepting StreamChannel remain untouched and can be used for result streaming if the application follows asynchronous or imperative programming models.
We should deprecate all
StreamChannel
methods on the reactive API as this pattern is discouraged in favor of directly streaming commands through the resultingPublisher
. Methods such ashmget
should return directlyFlux<KeyValue<K, V>>
instead ofMono<Map<K, V>>
to enable streaming capabilities.The text was updated successfully, but these errors were encountered: