MeiliSearch/src/bin/search.rs

71 lines
1.9 KiB
Rust
Raw Normal View History

use std::io::{self, Write, BufRead};
use std::iter::once;
2020-05-31 16:09:34 +02:00
use std::path::PathBuf;
use std::time::Instant;
2020-05-31 17:48:13 +02:00
use heed::EnvOpenOptions;
2020-07-12 10:55:09 +02:00
use log::debug;
2020-07-12 00:16:41 +02:00
use milli::{Index, BEU32};
2020-07-12 10:55:09 +02:00
use structopt::StructOpt;
2020-05-31 16:09:34 +02:00
#[cfg(target_os = "linux")]
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
2020-05-31 16:09:34 +02:00
#[derive(Debug, StructOpt)]
2020-06-04 18:19:52 +02:00
#[structopt(name = "mm-search", about = "The server side of the MMI project.")]
2020-05-31 16:09:34 +02:00
struct Opt {
/// The database path where the database is located.
/// It is created if it doesn't already exist.
#[structopt(long = "db", parse(from_os_str))]
database: PathBuf,
/// The query string to search for (doesn't support prefix search yet).
query: Option<String>,
2020-05-31 16:09:34 +02:00
}
fn main() -> anyhow::Result<()> {
let opt = Opt::from_args();
std::fs::create_dir_all(&opt.database)?;
let env = EnvOpenOptions::new()
.map_size(100 * 1024 * 1024 * 1024) // 100 GB
.max_readers(10)
.max_dbs(10)
2020-05-31 16:09:34 +02:00
.open(opt.database)?;
2020-05-31 17:48:13 +02:00
let index = Index::new(&env)?;
2020-05-31 16:09:34 +02:00
let rtxn = env.read_txn()?;
let stdin = io::stdin();
let lines = match opt.query {
Some(query) => Box::new(once(Ok(query.to_string()))),
None => Box::new(stdin.lock().lines()) as Box<dyn Iterator<Item = _>>,
};
for result in lines {
let before = Instant::now();
2020-05-31 16:09:34 +02:00
let query = result?;
let documents_ids = index.search(&rtxn, &query)?;
let headers = match index.headers(&rtxn)? {
Some(headers) => headers,
None => return Ok(()),
};
let mut stdout = io::stdout();
stdout.write_all(&headers)?;
for id in &documents_ids {
if let Some(content) = index.documents.get(&rtxn, &BEU32::new(*id))? {
stdout.write_all(&content)?;
}
2020-05-31 16:09:34 +02:00
}
2020-07-12 10:55:09 +02:00
debug!("Took {:.02?} to find {} documents", before.elapsed(), documents_ids.len());
}
2020-05-31 16:09:34 +02:00
Ok(())
}