Interface RListMultimapCacheNative<K,V>

Type Parameters:
K - key
V - value
All Superinterfaces:
RExpirable, RExpirableAsync, RListMultimap<K,V>, RMultimap<K,V>, RMultimapAsync<K,V>, RMultimapCache<K,V>, RMultimapCacheAsync<K,V>, RObject, RObjectAsync
All Known Implementing Classes:
RedissonListMultimapCacheNative

public interface RListMultimapCacheNative<K,V> extends RListMultimap<K,V>, RMultimapCache<K,V>
List based Multimap with ability to set TTL per entry. Stores insertion order and allows duplicates for values mapped to key. Uses Redis native commands for entry expiration and not a scheduled eviction task.

Requires Redis 7.4.0 and higher.

Author:
Nikita Koksharov