Package | Description |
---|---|
org.jredis |
This package contains the constructs that define the Java API semantics of the
JRedis clients.
|
org.jredis.ri.alphazero |
This package and child packages contain reference implementation alphazero
of the
JRedis and Connection
of the optional Connector specifications. |
org.jredis.ri.alphazero.support |
Utility classes to support this implementation.
|
org.jredis.semantics |
This package is optional.
|
Modifier and Type | Method and Description |
---|---|
Sort |
Sort.ALPHA()
sort is be default numeric -- use this to indicate lexiographic alphanumeric sort
|
<K> Sort |
Sort.BY(K pattern)
species the BY clause
|
Sort |
Sort.DESC()
default sort is ASCending -- use this in your sort to specify DESC sort
|
<K> Sort |
Sort.GET(K pattern)
specifies the GET clause
|
Sort |
Sort.LIMIT(long from,
long count)
Specifies the LIMIT class: from is the initial index, count is the number of results
|
<K> Sort |
JRedis.sort(K key)
Usage:
|
<K> Sort |
JRedisFuture.sort(K key)
For Usage details regarding sort semantics, see
JRedis.sort(K) . |
<K> Sort |
Sort.STORE(K destKey)
Store the sort results in another key.
|
Modifier and Type | Method and Description |
---|---|
<K> Sort |
JRedisSupport.sort(K key) |
<K> Sort |
JRedisFutureSupport.sort(K key) |
Modifier and Type | Class and Description |
---|---|
class |
SortSupport |
Modifier and Type | Method and Description |
---|---|
Sort |
SortSupport.ALPHA() |
<K> Sort |
SortSupport.BY(K pattern) |
Sort |
SortSupport.DESC() |
<K> Sort |
SortSupport.GET(K pattern) |
Sort |
SortSupport.LIMIT(long from,
long count) |
<K> Sort |
SortSupport.STORE(K destKey)
Store the sort results in another key
|
Modifier and Type | Interface and Description |
---|---|
interface |
SemanticSort<T>
[TODO: document me!]
|
Copyright © 2009–2016. All rights reserved.