Type Definition pagecache::MergeOperator

source ·
pub type MergeOperator = fn(key: &[u8], last_value: Option<&[u8]>, new_merge: &[u8]) -> Option<Vec<u8>>;
Expand description

Allows arbitrary logic to be injected into mere operations of the PageCache.