mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-09 22:48:54 +01:00
Limit the number of script operations
This commit is contained in:
parent
f07256971a
commit
f4add93043
@ -217,7 +217,10 @@ where
|
|||||||
output
|
output
|
||||||
}
|
}
|
||||||
|
|
||||||
let engine = Engine::new();
|
let mut engine = Engine::new();
|
||||||
|
//It is an arbitrary value. We need to let users define this in the settings.
|
||||||
|
engine.set_max_operations(1_000_000);
|
||||||
|
|
||||||
let ast = engine.compile(code).unwrap();
|
let ast = engine.compile(code).unwrap();
|
||||||
let fields_ids_map = self.index.fields_ids_map(self.wtxn)?;
|
let fields_ids_map = self.index.fields_ids_map(self.wtxn)?;
|
||||||
let primary_key = self.index.primary_key(self.wtxn)?.unwrap();
|
let primary_key = self.index.primary_key(self.wtxn)?.unwrap();
|
||||||
|
Loading…
Reference in New Issue
Block a user