org.springframework.data.redis.core
Interface BulkMapper<T,V>


public interface BulkMapper<T,V>

Mapper translating Redis bulk value responses (typically returned by a sort query) to actual objects. Implementations of this interface do not have to worry about exception or connection handling.

Typically used by RedisTemplate sort methods.


Method Summary
 T mapBulk(List<V> tuple)
           
 

Method Detail

mapBulk

T mapBulk(List<V> tuple)