RiakIndexRange Method (String, String, String, String) |
Note: This API is now obsolete.
Create a mapreduce input from a string secondary index range query.
Namespace:
RiakClient.Models.MapReduce.Inputs
Assembly:
RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax [ObsoleteAttribute("Use Range(RiakIndexId, start, end) instead. This will be removed in the next version.")]
public static RiakIndexInput Range(
string bucket,
string index,
string start,
string end
)
[<ObsoleteAttribute("Use Range(RiakIndexId, start, end) instead. This will be removed in the next version.")>]
static member Range :
bucket : string *
index : string *
start : string *
end : string -> RiakIndexInput
Parameters
- bucket
- Type: SystemString
The bucket containing the index to query. - index
- Type: SystemString
The index to query. - start
- Type: SystemString
The lower bound of the key range for the query. - end
- Type: SystemString
The upper bound of the key range for the query.
Return Value
Type:
RiakIndexInputA newly initialized and configured
RiakIndexInput.
See Also