Spring Data Key-Value

Uses of Interface
org.springframework.data.keyvalue.redis.connection.SortParameters

Packages that use SortParameters
org.springframework.data.keyvalue.redis.connection Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries. 
org.springframework.data.keyvalue.redis.connection.jedis Connection package for Jedis library. 
org.springframework.data.keyvalue.redis.connection.jredis Connection package for JRedis library. 
org.springframework.data.keyvalue.redis.connection.rjc Connection package for RJC library. 
org.springframework.data.keyvalue.redis.core.query Query package for Redis template. 
 

Uses of SortParameters in org.springframework.data.keyvalue.redis.connection
 

Classes in org.springframework.data.keyvalue.redis.connection that implement SortParameters
 class DefaultSortParameters
          Default implementation for SortParameters.
 

Methods in org.springframework.data.keyvalue.redis.connection with parameters of type SortParameters
 List<byte[]> DefaultStringRedisConnection.sort(byte[] key, SortParameters params)
           
 List<byte[]> RedisKeyCommands.sort(byte[] key, SortParameters params)
           
 Long DefaultStringRedisConnection.sort(byte[] key, SortParameters params, byte[] storeKey)
           
 Long RedisKeyCommands.sort(byte[] key, SortParameters params, byte[] storeKey)
           
 List<String> DefaultStringRedisConnection.sort(String key, SortParameters params)
           
 List<String> StringRedisConnection.sort(String key, SortParameters params)
           
 Long DefaultStringRedisConnection.sort(String key, SortParameters params, String storeKey)
           
 Long StringRedisConnection.sort(String key, SortParameters params, String storeKey)
           
 

Uses of SortParameters in org.springframework.data.keyvalue.redis.connection.jedis
 

Methods in org.springframework.data.keyvalue.redis.connection.jedis with parameters of type SortParameters
 List<byte[]> JedisConnection.sort(byte[] key, SortParameters params)
           
 Long JedisConnection.sort(byte[] key, SortParameters params, byte[] sortKey)
           
 

Uses of SortParameters in org.springframework.data.keyvalue.redis.connection.jredis
 

Methods in org.springframework.data.keyvalue.redis.connection.jredis with parameters of type SortParameters
 List<byte[]> JredisConnection.sort(byte[] key, SortParameters params)
           
 Long JredisConnection.sort(byte[] key, SortParameters params, byte[] storeKey)
           
 

Uses of SortParameters in org.springframework.data.keyvalue.redis.connection.rjc
 

Methods in org.springframework.data.keyvalue.redis.connection.rjc with parameters of type SortParameters
 List<byte[]> RjcConnection.sort(byte[] key, SortParameters params)
           
 Long RjcConnection.sort(byte[] key, SortParameters params, byte[] sortKey)
           
 

Uses of SortParameters in org.springframework.data.keyvalue.redis.core.query
 

Methods in org.springframework.data.keyvalue.redis.core.query that return SortParameters
static
<K> SortParameters
QueryUtils.convertQuery(SortQuery<K> query, RedisSerializer<String> stringSerializer)
           
 


Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.