Uses of Class
org.idevlab.rjc.ElementScore

Packages that use ElementScore
org.idevlab.rjc   
org.idevlab.rjc.sharding   
 

Uses of ElementScore in org.idevlab.rjc
 

Methods in org.idevlab.rjc that return types with arguments of type ElementScore
 List<ElementScore> RedisOperations.zrangeByScoreWithScores(String key, String min, String max)
          Time complexity

O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements being returned.

 List<ElementScore> RedisNode.zrangeByScoreWithScores(String key, String min, String max)
           
 List<ElementScore> RedisOperations.zrangeByScoreWithScores(String key, String min, String max, int offset, int count)
          Time complexity

O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements being returned.

 List<ElementScore> RedisNode.zrangeByScoreWithScores(String key, String min, String max, int offset, int count)
           
 List<ElementScore> RedisOperations.zrangeWithScores(String key, int start, int end)
          Time complexity

O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements returned.

 List<ElementScore> RedisNode.zrangeWithScores(String key, int start, int end)
           
 List<ElementScore> RedisOperations.zrevrangeByScoreWithScores(String key, String max, String min)
          Time complexity

O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements being returned.

 List<ElementScore> RedisNode.zrevrangeByScoreWithScores(String key, String max, String min)
           
 List<ElementScore> RedisOperations.zrevrangeByScoreWithScores(String key, String max, String min, int offset, int count)
          Time complexity

O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements being returned.

 List<ElementScore> RedisNode.zrevrangeByScoreWithScores(String key, String max, String min, int offset, int count)
           
 List<ElementScore> RedisOperations.zrevrangeWithScores(String key, int start, int end)
          Time complexity

O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements returned.

 List<ElementScore> RedisNode.zrevrangeWithScores(String key, int start, int end)
           
 

Uses of ElementScore in org.idevlab.rjc.sharding
 

Methods in org.idevlab.rjc.sharding that return types with arguments of type ElementScore
 List<ElementScore> ShardedRedis.zrangeByScoreWithScores(String key, String min, String max)
           
 List<ElementScore> ShardedRedis.zrangeByScoreWithScores(String key, String min, String max, int offset, int count)
           
 List<ElementScore> ShardedRedis.zrangeWithScores(String key, int start, int end)
           
 List<ElementScore> ShardedRedis.zrevrangeByScoreWithScores(String key, String max, String min)
           
 List<ElementScore> ShardedRedis.zrevrangeByScoreWithScores(String key, String max, String min, int offset, int count)
           
 List<ElementScore> ShardedRedis.zrevrangeWithScores(String key, int start, int end)
           
 



Copyright © 2011. All Rights Reserved.