Package org.springframework.data.keyvalue.redis.connection

Examples of org.springframework.data.keyvalue.redis.connection.DefaultSortParameters


*/
public abstract class QueryUtils {

  public static <K> SortParameters convertQuery(SortQuery<K> query, RedisSerializer<String> stringSerializer) {

    return new DefaultSortParameters(stringSerializer.serialize(query.getBy()), query.getLimit(), serialize(
        query.getGetPattern(), stringSerializer), query.getOrder(), query.isAlphabetic());
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.keyvalue.redis.connection.DefaultSortParameters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.