Package org.redisson.api
Interface RJsonBucketsRx
public interface RJsonBucketsRx
-
Method Summary
Modifier and TypeMethodDescriptionReturns Redis json object mapped by key with default pathReturns Redis json object mapped by key with specific pathio.reactivex.rxjava3.core.CompletableSaves json objects with default path mapped by Redis key.io.reactivex.rxjava3.core.CompletableSaves json objects with specific path mapped by Redis key.
-
Method Details
-
get
Returns Redis json object mapped by key with default path- Type Parameters:
V- type of object with specific json-path- Parameters:
keys- keys- Returns:
- Map with name as key and bucket as value
-
get
<V> io.reactivex.rxjava3.core.Single<Map<String,V>> get(JsonCodec codec, String path, String... keys) Returns Redis json object mapped by key with specific path- Type Parameters:
V- type of value at specific json-path- Parameters:
codec- codec for specific pathpath- json pathkeys- keys- Returns:
- Map with name as key and bucket as value
-
set
Saves json objects with default path mapped by Redis key.- Parameters:
buckets- map of json buckets
-
set
Saves json objects with specific path mapped by Redis key.- Parameters:
codec- codec for specific pathpath- json pathbuckets- map of json buckets
-