MVIndex

An index that stores the data in an MVStore.

Methods
void addBufferedRows(List bufferNames)
Add all the index data from the buffers to the index.
void addBufferedRows(List bufferNames)
Add all the index data from the buffers to the index. The index will typically use merge sort to add the data more quickly in sorted order.
Parameters:
bufferNames - the names of the temporary storage
void addRowsToBuffer(List rows, String bufferName)
Add the rows to a temporary storage (not to the index yet).
void addRowsToBuffer(List rows, String bufferName)
Add the rows to a temporary storage (not to the index yet). The rows are sorted by the index columns. This is to more quickly build the index.
Parameters:
rows - the rows
bufferName - the name of the temporary storage