mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
bring back the IndexMeta and IndexStats in meilisearch-http
This commit is contained in:
parent
f4ecf75cda
commit
0d0b2a9ac1
6 changed files with 208 additions and 130 deletions
|
@ -82,6 +82,13 @@ impl Query {
|
|||
..self
|
||||
}
|
||||
}
|
||||
|
||||
pub fn with_limit(self, limit: u32) -> Self {
|
||||
Self {
|
||||
limit,
|
||||
..self
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub mod db_name {
|
||||
|
@ -197,7 +204,6 @@ impl IndexScheduler {
|
|||
};
|
||||
|
||||
std::thread::spawn(move || loop {
|
||||
println!("started running");
|
||||
run.wake_up.wait();
|
||||
|
||||
match run.tick() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue