pub struct AccountsIndexStorage<T: IndexValue> {
pub storage: Arc<BucketMapHolder<T>>,
pub in_mem: Vec<Arc<InMemAccountsIndex<T>>>,
/* private fields */
}
Expand description
Manages the lifetime of the background processing threads.
Fields§
§storage: Arc<BucketMapHolder<T>>
§in_mem: Vec<Arc<InMemAccountsIndex<T>>>
Implementations§
source§impl<T: IndexValue> AccountsIndexStorage<T>
impl<T: IndexValue> AccountsIndexStorage<T>
sourcepub fn set_startup(&self, startup: Startup)
pub fn set_startup(&self, startup: Startup)
startup=true causes: in mem to act in a way that flushes to disk asap also creates some additional bg threads to facilitate flushing to disk asap startup=false is ‘normal’ operation
sourcepub fn get_startup_remaining_items_to_flush_estimate(&self) -> usize
pub fn get_startup_remaining_items_to_flush_estimate(&self) -> usize
estimate how many items are still needing to be flushed to the disk cache.
sourcepub fn new(bins: usize, config: &Option<AccountsIndexConfig>) -> Self
pub fn new(bins: usize, config: &Option<AccountsIndexConfig>) -> Self
allocate BucketMapHolder and InMemAccountsIndex[]