[−][src]Struct rocksdb::ReadOptions
Methods
impl ReadOptions[src]
pub fn set_iterate_upper_bound<K: AsRef<[u8]>>(&mut self, key: K)[src]
pub fn set_prefix_same_as_start(&mut self, v: bool)[src]
pub fn set_total_order_seek(&mut self, v: bool)[src]
pub fn set_readahead_size(&mut self, v: usize)[src]
If non-zero, an iterator will create a new table reader which performs reads of the given size. Using a large size (> 2MB) can improve the performance of forward iteration on spinning disks. Default: 0
use rocksdb::{ReadOptions}; let mut opts = ReadOptions::default(); opts.set_readahead_size(4_194_304); // 4mb
Trait Implementations
Auto Trait Implementations
impl !Send for ReadOptions
impl !Sync for ReadOptions
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,