Enum commitlog::ReadLimit
[−]
[src]
pub enum ReadLimit {
Bytes(usize),
Messages(usize),
}Batch size limitation on read.
Variants
Bytes(usize)Limit the number of bytes read from the log. This is recommended.
Messages(usize)Limit the number of messages read from the log.