19 lines
613 B
Rust
19 lines
613 B
Rust
|
/// Configuration for the engine behaviour
|
||
|
/// The defaults are optimal so please only modify these if you know deliberately why you are modifying them.
|
||
|
#[derive(Clone, Copy, Debug)]
|
||
|
pub struct EngineOptions {
|
||
|
/// The maximum number of live queries that can be created in a single transaction
|
||
|
pub new_live_queries_per_transaction: u32,
|
||
|
/// The size of batches being requested per update in order to catch up a live query
|
||
|
pub live_query_catchup_size: u32,
|
||
|
}
|
||
|
|
||
|
impl Default for EngineOptions {
|
||
|
fn default() -> Self {
|
||
|
Self {
|
||
|
new_live_queries_per_transaction: 100,
|
||
|
live_query_catchup_size: 1000,
|
||
|
}
|
||
|
}
|
||
|
}
|