See: Description
Class | Description |
---|---|
BigIntIndex | |
BigIntIndex.Name |
Encapsulates the name and
IndexType for a BigIntIndex |
IndexNames |
Collection of Built-in Riak Secondary Index Names
|
LongIntIndex |
RiakIndex implementation used to access a Riak _int Secondary Index using Long values. |
LongIntIndex.Name |
Encapsulates the name and
IndexType for a LongIntIndex |
RawIndex |
RiakIndex implementation used to access a Riak _int or _bin
Secondary Index using BinaryValue (byte[] ) values. |
RawIndex.Name |
Encapsulates the name and
IndexType for a RawIndex |
RiakIndex<T> |
Abstract base class for modeling a Riak Secondary Index (2i).
|
RiakIndex.Name<T extends RiakIndex<?>> |
Abstract base class used to encapsulate a
RiakIndex name and type. |
RiakIndexes |
Container used to instantiate and Manage
RiakIndex objects to be used with a RiakObject . |
StringBinIndex |
RiakIndex implementation used to access a Riak _bin Secondary Index using String values. |
StringBinIndex.Name |
Encapsulates the name, character asSet, and
IndexType for a StringBinIndex |
Enum | Description |
---|---|
IndexType |
Enum that encapsulates the suffix used to determine and index type in Riak.
|
Since the KV data in Riak is completely opaque to 2i, the user must tell 2i exactly what attribute to index on and what its index value should be via key/value metadata. This is different from Search, which parses the data and builds indexes based on a schema.
The classes in this package provide an API for managing secondary indexes.
Important note: 2i currently requires Riak to be configured to use the eleveldb or memory backend. The default bitcask backend does not support 2i.
"_int"
and "_bin"
respectively) added to the index's
name. In the client this is encapsulated in the
IndexType
enum. When specifying
an index name you do not have to append this suffix; it's done automatically.
A RiakIndex
is made up of the index name, it's type,
then one or more queryable index values.
RiakIndex
instances are created and managed via the RiakIndexes
container. The container is stored in a RiakObject
.
Data in Riak, including secondary indexes, is stored as raw bytes. The conversion
to and from bytes is handled by the concrete RiakIndex
implementations
and all indexes are managed by the RiakIndexes
container.
Each concrete RiakIndex
includes a hybrid builder class named Name
.
The methods of this class take an instance of that builder as an
argument to allow for proper type inference and construction of RiakIndex
objects to expose.
The RiakIndexes
' getIndex()
method will either return a reference to
the existing RiakIndex
or atomically add and return a new one. The
returned reference is of the type provided by the Name
and is the
mutable index; changes are made directly to it.
RiakIndexes myIndexes = riakObject.getIndexes(); LongIntIndex myIndex = myIndexes.getIndex(LongIntIndex.named("number_on_hand")); myIndex.removeAll(); myIndex.add(6L);
Calls can be chained, allowing for easy addition or removal of values from an index.
riakObject.getIndexes() .getIndex(StringBinIndex.named("colors")) .remove("blue") .add("red");
RiakIndex
is uniquely identified by its textual name and IndexType
regardless of the concrete RiakIndex
implementation being used to view
or update it. This container enforces this uniqueness by being the source of
all RiakIndex
instances and managing them in a thread-safe way with
atomic operations.
What this means is that any RiakIndex
having the same name and Indextype
will refer to the same index. This is only important to note if you are mixing
access to the indexes using RawIndex
.
The test case below demonstrates
the relation.
public void wrapping() { // creates or fetches the BIN (_bin) index named "foo", adds a value to it RawIndex index = indexes.getIndex(RawIndex.named("foo", IndexType.BIN)); BinaryValue baw = BinaryValue.unsafeCreate("value".getBytes()); index.add(baw); // fetches the previously created index as a StringBinIndex StringBinIndex wrapper = indexes.getIndex(StringBinIndex.named("foo")); // The references are to different objects assertNotSame(index, wrapper); // The two objects are equal ( index.equals(wrapper) == true ) assertEquals(index, wrapper); // The value exists assertTrue(wrapper.hasValue("value")); // Removing the value via the StringBinIndex is reflected in the RawIndex wrapper.remove("value"); assertFalse(index.hasValue(baw)); }
One of the key features of 2i is the ability to do range queries. As previously noted the values are stored in Riak as bytes. Comparison is done byte-by-byte. UTF-8 lends itself well to this as its byte ordering is the same as its lexical ordering.
If you are using a _bin
index with a character asSet whose byte ordering
differs from its lexical ordering, range queries will be affected.
Copyright © 2016. All rights reserved.