Click or drag to resize
RiakClientListKeysFromIndex Method (String)
Return a list of keys from the given bucket.

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
public RiakResult<IList<string>> ListKeysFromIndex(
	string bucket
)

Parameters

bucket
Type: SystemString
The bucket to list keys from.

Return Value

Type: RiakResultIListString
An IEnumerableT of keys.

Implements

IRiakBatchClientListKeysFromIndex(String)
Remarks
This uses the $key special index instead of the list keys API to quickly return an unsorted list of keys from Riak. Only works with a LevelDB backend.
See Also