MeiliSearch/meilisearch-core/src/store/synonyms.rs

37 lines
1.1 KiB
Rust
Raw Normal View History

2020-05-22 15:00:50 +02:00
use std::borrow::Cow;
use heed::Result as ZResult;
2019-10-21 12:05:53 +02:00
use heed::types::ByteSlice;
2020-05-22 15:00:50 +02:00
use crate::database::MainT;
2020-05-22 15:00:50 +02:00
use crate::FstSetCow;
2019-10-03 15:04:11 +02:00
#[derive(Copy, Clone)]
pub struct Synonyms {
2019-10-21 12:05:53 +02:00
pub(crate) synonyms: heed::Database<ByteSlice, ByteSlice>,
}
impl Synonyms {
2020-05-22 15:00:50 +02:00
pub fn put_synonyms<A>(self, writer: &mut heed::RwTxn<MainT>, word: &[u8], synonyms: &fst::Set<A>) -> ZResult<()>
where A: AsRef<[u8]>,
{
2019-10-16 17:05:24 +02:00
let bytes = synonyms.as_fst().as_bytes();
self.synonyms.put(writer, word, bytes)
}
pub fn del_synonyms(self, writer: &mut heed::RwTxn<MainT>, word: &[u8]) -> ZResult<bool> {
2019-10-16 17:05:24 +02:00
self.synonyms.delete(writer, word)
2019-10-08 17:16:48 +02:00
}
pub fn clear(self, writer: &mut heed::RwTxn<MainT>) -> ZResult<()> {
2019-11-06 10:49:13 +01:00
self.synonyms.clear(writer)
}
2020-05-22 15:00:50 +02:00
pub fn synonyms<'txn>(self, reader: &'txn heed::RoTxn<MainT>, word: &[u8]) -> ZResult<FstSetCow<'txn>> {
match self.synonyms.get(reader, word)? {
2020-05-22 15:00:50 +02:00
Some(bytes) => Ok(fst::Set::new(bytes).unwrap().map_data(Cow::Borrowed).unwrap()),
None => Ok(fst::Set::default().map_data(Cow::Owned).unwrap()),
}
}
}