Struct sstable::table_reader::Table [] [src]

pub struct Table<R: Read + Seek, C: Comparator> { /* fields omitted */ }

Methods

impl<R: Read + Seek> Table<R, StandardComparator>
[src]

Open a table for reading.

impl<R: Read + Seek, C: Comparator> Table<R, C>
[src]

Open a table for reading. Note: The comparator must be the same that was chosen when building the table.

Returns the offset of the block that contains key.

Retrieve an entry from the table.

Note: As this doesn't keep state, using a TableIterator and seek() may be more efficient when retrieving several entries from the same underlying block.