2023-04-04 15:01:42 +02:00
|
|
|
use std::borrow::Cow;
|
2023-03-08 09:55:53 +01:00
|
|
|
use std::collections::hash_map::Entry;
|
2023-03-08 13:26:29 +01:00
|
|
|
use std::hash::Hash;
|
2023-03-08 09:55:53 +01:00
|
|
|
|
2023-02-21 12:55:44 +01:00
|
|
|
use fxhash::FxHashMap;
|
2023-02-21 13:57:34 +01:00
|
|
|
use heed::types::ByteSlice;
|
2023-06-13 14:42:38 +02:00
|
|
|
use heed::{BytesEncode, Database, RoTxn};
|
2023-04-11 15:26:47 +02:00
|
|
|
use roaring::RoaringBitmap;
|
2023-03-08 09:55:53 +01:00
|
|
|
|
2023-03-30 11:08:17 +02:00
|
|
|
use super::interner::Interned;
|
2023-04-11 18:26:44 +02:00
|
|
|
use super::Word;
|
2023-06-13 14:42:38 +02:00
|
|
|
use crate::heed_codec::{BytesDecodeOwned, StrBEU16Codec};
|
|
|
|
use crate::update::MergeFn;
|
2023-04-11 15:26:47 +02:00
|
|
|
use crate::{
|
|
|
|
CboRoaringBitmapCodec, CboRoaringBitmapLenCodec, Result, RoaringBitmapCodec, SearchContext,
|
|
|
|
};
|
2023-02-21 09:43:23 +01:00
|
|
|
|
2023-03-08 13:26:29 +01:00
|
|
|
/// A cache storing pointers to values in the LMDB databases.
|
|
|
|
///
|
|
|
|
/// Used for performance reasons only. By using this cache, we avoid performing a
|
|
|
|
/// database lookup and instead get a direct reference to the value using a fast
|
|
|
|
/// local HashMap lookup.
|
2023-02-21 09:43:23 +01:00
|
|
|
#[derive(Default)]
|
2023-03-13 14:03:48 +01:00
|
|
|
pub struct DatabaseCache<'ctx> {
|
2023-03-06 19:21:55 +01:00
|
|
|
pub word_pair_proximity_docids:
|
2023-06-13 14:42:38 +02:00
|
|
|
FxHashMap<(u8, Interned<String>, Interned<String>), Option<Cow<'ctx, [u8]>>>,
|
2023-02-21 09:43:23 +01:00
|
|
|
pub word_prefix_pair_proximity_docids:
|
2023-06-13 14:42:38 +02:00
|
|
|
FxHashMap<(u8, Interned<String>, Interned<String>), Option<Cow<'ctx, [u8]>>>,
|
2023-02-21 15:10:22 +01:00
|
|
|
pub prefix_word_pair_proximity_docids:
|
2023-06-13 14:42:38 +02:00
|
|
|
FxHashMap<(u8, Interned<String>, Interned<String>), Option<Cow<'ctx, [u8]>>>,
|
|
|
|
pub word_docids: FxHashMap<Interned<String>, Option<Cow<'ctx, [u8]>>>,
|
|
|
|
pub exact_word_docids: FxHashMap<Interned<String>, Option<Cow<'ctx, [u8]>>>,
|
|
|
|
pub word_prefix_docids: FxHashMap<Interned<String>, Option<Cow<'ctx, [u8]>>>,
|
|
|
|
pub exact_word_prefix_docids: FxHashMap<Interned<String>, Option<Cow<'ctx, [u8]>>>,
|
2023-04-04 15:01:42 +02:00
|
|
|
|
|
|
|
pub words_fst: Option<fst::Set<Cow<'ctx, [u8]>>>,
|
2023-06-13 14:42:38 +02:00
|
|
|
pub word_position_docids: FxHashMap<(Interned<String>, u16), Option<Cow<'ctx, [u8]>>>,
|
|
|
|
pub word_prefix_position_docids: FxHashMap<(Interned<String>, u16), Option<Cow<'ctx, [u8]>>>,
|
2023-04-13 10:46:09 +02:00
|
|
|
pub word_positions: FxHashMap<Interned<String>, Vec<u16>>,
|
|
|
|
pub word_prefix_positions: FxHashMap<Interned<String>, Vec<u16>>,
|
|
|
|
|
2023-06-13 14:42:38 +02:00
|
|
|
pub word_fid_docids: FxHashMap<(Interned<String>, u16), Option<Cow<'ctx, [u8]>>>,
|
|
|
|
pub word_prefix_fid_docids: FxHashMap<(Interned<String>, u16), Option<Cow<'ctx, [u8]>>>,
|
2023-04-12 11:40:44 +02:00
|
|
|
pub word_fids: FxHashMap<Interned<String>, Vec<u16>>,
|
|
|
|
pub word_prefix_fids: FxHashMap<Interned<String>, Vec<u16>>,
|
2023-02-21 09:43:23 +01:00
|
|
|
}
|
2023-03-13 14:03:48 +01:00
|
|
|
impl<'ctx> DatabaseCache<'ctx> {
|
2023-06-13 14:42:38 +02:00
|
|
|
fn get_value<'v, K1, KC, DC>(
|
2023-03-13 14:03:48 +01:00
|
|
|
txn: &'ctx RoTxn,
|
2023-03-08 13:26:29 +01:00
|
|
|
cache_key: K1,
|
|
|
|
db_key: &'v KC::EItem,
|
2023-06-13 14:42:38 +02:00
|
|
|
cache: &mut FxHashMap<K1, Option<Cow<'ctx, [u8]>>>,
|
2023-03-08 13:26:29 +01:00
|
|
|
db: Database<KC, ByteSlice>,
|
2023-06-13 14:42:38 +02:00
|
|
|
) -> Result<Option<DC::DItem>>
|
2023-03-08 13:26:29 +01:00
|
|
|
where
|
|
|
|
K1: Copy + Eq + Hash,
|
|
|
|
KC: BytesEncode<'v>,
|
2023-06-13 14:42:38 +02:00
|
|
|
DC: BytesDecodeOwned,
|
2023-03-08 13:26:29 +01:00
|
|
|
{
|
2023-06-13 14:42:38 +02:00
|
|
|
match cache.entry(cache_key) {
|
|
|
|
Entry::Occupied(_) => {}
|
2023-02-21 09:43:23 +01:00
|
|
|
Entry::Vacant(entry) => {
|
2023-06-13 14:42:38 +02:00
|
|
|
let bitmap_ptr = db.get(txn, db_key)?.map(Cow::Borrowed);
|
|
|
|
entry.insert(bitmap_ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match cache.get(&cache_key).unwrap() {
|
|
|
|
Some(Cow::Borrowed(bytes)) => {
|
|
|
|
DC::bytes_decode_owned(bytes).ok_or(heed::Error::Decoding.into()).map(Some)
|
|
|
|
}
|
|
|
|
Some(Cow::Owned(bytes)) => {
|
|
|
|
DC::bytes_decode_owned(bytes).ok_or(heed::Error::Decoding.into()).map(Some)
|
|
|
|
}
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_value_from_keys<'v, K1, KC, DC>(
|
|
|
|
txn: &'ctx RoTxn,
|
|
|
|
cache_key: K1,
|
|
|
|
db_keys: &[&'v KC::EItem],
|
|
|
|
cache: &mut FxHashMap<K1, Option<Cow<'ctx, [u8]>>>,
|
|
|
|
db: Database<KC, ByteSlice>,
|
|
|
|
merger: MergeFn,
|
|
|
|
) -> Result<Option<DC::DItem>>
|
|
|
|
where
|
|
|
|
K1: Copy + Eq + Hash,
|
|
|
|
KC: BytesEncode<'v>,
|
|
|
|
DC: BytesDecodeOwned,
|
|
|
|
{
|
|
|
|
match cache.entry(cache_key) {
|
|
|
|
Entry::Occupied(_) => {}
|
|
|
|
Entry::Vacant(entry) => {
|
|
|
|
let bitmap_ptr: Option<Cow<'ctx, [u8]>> = match db_keys {
|
|
|
|
[] => None,
|
|
|
|
[key] => db.get(txn, key)?.map(Cow::Borrowed),
|
|
|
|
keys => {
|
|
|
|
let bitmaps = keys
|
|
|
|
.into_iter()
|
|
|
|
.filter_map(|key| db.get(txn, key).transpose())
|
|
|
|
.map(|v| v.map(Cow::Borrowed))
|
|
|
|
.collect::<std::result::Result<Vec<Cow<[u8]>>, _>>()?;
|
|
|
|
|
|
|
|
if bitmaps.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(merger(&[], &bitmaps[..])?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-02-21 09:43:23 +01:00
|
|
|
entry.insert(bitmap_ptr);
|
|
|
|
}
|
|
|
|
};
|
2023-06-13 14:42:38 +02:00
|
|
|
|
|
|
|
match cache.get(&cache_key).unwrap() {
|
|
|
|
Some(Cow::Borrowed(bytes)) => {
|
|
|
|
DC::bytes_decode_owned(bytes).ok_or(heed::Error::Decoding.into()).map(Some)
|
|
|
|
}
|
|
|
|
Some(Cow::Owned(bytes)) => {
|
|
|
|
DC::bytes_decode_owned(bytes).ok_or(heed::Error::Decoding.into()).map(Some)
|
|
|
|
}
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
2023-02-21 09:43:23 +01:00
|
|
|
}
|
2023-03-30 11:08:17 +02:00
|
|
|
}
|
|
|
|
impl<'ctx> SearchContext<'ctx> {
|
2023-04-04 15:01:42 +02:00
|
|
|
pub fn get_words_fst(&mut self) -> Result<fst::Set<Cow<'ctx, [u8]>>> {
|
|
|
|
if let Some(fst) = self.db_cache.words_fst.clone() {
|
|
|
|
Ok(fst)
|
|
|
|
} else {
|
|
|
|
let fst = self.index.words_fst(self.txn)?;
|
|
|
|
self.db_cache.words_fst = Some(fst.clone());
|
|
|
|
Ok(fst)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-11 18:26:44 +02:00
|
|
|
pub fn word_docids(&mut self, word: Word) -> Result<Option<RoaringBitmap>> {
|
|
|
|
match word {
|
|
|
|
Word::Original(word) => {
|
|
|
|
let exact = self.get_db_exact_word_docids(word)?;
|
|
|
|
let tolerant = self.get_db_word_docids(word)?;
|
|
|
|
Ok(match (exact, tolerant) {
|
|
|
|
(None, None) => None,
|
|
|
|
(None, Some(tolerant)) => Some(tolerant),
|
|
|
|
(Some(exact), None) => Some(exact),
|
|
|
|
(Some(exact), Some(tolerant)) => {
|
|
|
|
let mut both = exact;
|
|
|
|
both |= tolerant;
|
|
|
|
Some(both)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
Word::Derived(word) => self.get_db_word_docids(word),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-08 13:26:29 +01:00
|
|
|
/// Retrieve or insert the given value in the `word_docids` database.
|
2023-04-11 18:27:41 +02:00
|
|
|
fn get_db_word_docids(&mut self, word: Interned<String>) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, RoaringBitmapCodec>(
|
2023-03-30 11:08:17 +02:00
|
|
|
self.txn,
|
2023-03-08 13:26:29 +01:00
|
|
|
word,
|
2023-03-30 11:08:17 +02:00
|
|
|
self.word_interner.get(word).as_str(),
|
|
|
|
&mut self.db_cache.word_docids,
|
|
|
|
self.index.word_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-03-08 13:26:29 +01:00
|
|
|
}
|
2023-04-11 18:26:44 +02:00
|
|
|
|
|
|
|
fn get_db_exact_word_docids(
|
|
|
|
&mut self,
|
|
|
|
word: Interned<String>,
|
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, RoaringBitmapCodec>(
|
2023-04-11 18:26:44 +02:00
|
|
|
self.txn,
|
|
|
|
word,
|
|
|
|
self.word_interner.get(word).as_str(),
|
|
|
|
&mut self.db_cache.exact_word_docids,
|
|
|
|
self.index.exact_word_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-04-11 18:26:44 +02:00
|
|
|
}
|
|
|
|
|
2023-04-11 22:04:38 +02:00
|
|
|
pub fn word_prefix_docids(&mut self, prefix: Word) -> Result<Option<RoaringBitmap>> {
|
|
|
|
match prefix {
|
|
|
|
Word::Original(prefix) => {
|
|
|
|
let exact = self.get_db_exact_word_prefix_docids(prefix)?;
|
|
|
|
let tolerant = self.get_db_word_prefix_docids(prefix)?;
|
|
|
|
Ok(match (exact, tolerant) {
|
|
|
|
(None, None) => None,
|
|
|
|
(None, Some(tolerant)) => Some(tolerant),
|
|
|
|
(Some(exact), None) => Some(exact),
|
|
|
|
(Some(exact), Some(tolerant)) => {
|
|
|
|
let mut both = exact;
|
|
|
|
both |= tolerant;
|
|
|
|
Some(both)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
Word::Derived(prefix) => self.get_db_word_prefix_docids(prefix),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-08 13:26:29 +01:00
|
|
|
/// Retrieve or insert the given value in the `word_prefix_docids` database.
|
2023-04-11 22:06:10 +02:00
|
|
|
fn get_db_word_prefix_docids(
|
2023-03-08 13:26:29 +01:00
|
|
|
&mut self,
|
|
|
|
prefix: Interned<String>,
|
2023-04-11 15:26:47 +02:00
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, RoaringBitmapCodec>(
|
2023-03-30 11:08:17 +02:00
|
|
|
self.txn,
|
2023-03-08 13:26:29 +01:00
|
|
|
prefix,
|
2023-03-30 11:08:17 +02:00
|
|
|
self.word_interner.get(prefix).as_str(),
|
|
|
|
&mut self.db_cache.word_prefix_docids,
|
|
|
|
self.index.word_prefix_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-02-21 09:43:23 +01:00
|
|
|
}
|
|
|
|
|
2023-04-11 22:04:38 +02:00
|
|
|
fn get_db_exact_word_prefix_docids(
|
|
|
|
&mut self,
|
|
|
|
prefix: Interned<String>,
|
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, RoaringBitmapCodec>(
|
2023-04-11 22:04:38 +02:00
|
|
|
self.txn,
|
|
|
|
prefix,
|
|
|
|
self.word_interner.get(prefix).as_str(),
|
|
|
|
&mut self.db_cache.exact_word_prefix_docids,
|
|
|
|
self.index.exact_word_prefix_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-04-11 22:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-03-30 11:08:17 +02:00
|
|
|
pub fn get_db_word_pair_proximity_docids(
|
2023-02-21 09:43:23 +01:00
|
|
|
&mut self,
|
2023-03-06 19:21:55 +01:00
|
|
|
word1: Interned<String>,
|
|
|
|
word2: Interned<String>,
|
2023-02-21 09:43:23 +01:00
|
|
|
proximity: u8,
|
2023-04-11 15:26:47 +02:00
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapCodec>(
|
2023-03-30 11:08:17 +02:00
|
|
|
self.txn,
|
2023-03-08 13:26:29 +01:00
|
|
|
(proximity, word1, word2),
|
2023-03-30 11:08:17 +02:00
|
|
|
&(
|
|
|
|
proximity,
|
|
|
|
self.word_interner.get(word1).as_str(),
|
|
|
|
self.word_interner.get(word2).as_str(),
|
|
|
|
),
|
|
|
|
&mut self.db_cache.word_pair_proximity_docids,
|
|
|
|
self.index.word_pair_proximity_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-04-11 15:26:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_db_word_pair_proximity_docids_len(
|
|
|
|
&mut self,
|
|
|
|
word1: Interned<String>,
|
|
|
|
word2: Interned<String>,
|
|
|
|
proximity: u8,
|
|
|
|
) -> Result<Option<u64>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapLenCodec>(
|
2023-04-11 15:26:47 +02:00
|
|
|
self.txn,
|
|
|
|
(proximity, word1, word2),
|
|
|
|
&(
|
|
|
|
proximity,
|
|
|
|
self.word_interner.get(word1).as_str(),
|
|
|
|
self.word_interner.get(word2).as_str(),
|
|
|
|
),
|
|
|
|
&mut self.db_cache.word_pair_proximity_docids,
|
|
|
|
self.index.word_pair_proximity_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-02-21 09:43:23 +01:00
|
|
|
}
|
|
|
|
|
2023-03-30 11:08:17 +02:00
|
|
|
pub fn get_db_word_prefix_pair_proximity_docids(
|
2023-02-21 09:43:23 +01:00
|
|
|
&mut self,
|
2023-03-06 19:21:55 +01:00
|
|
|
word1: Interned<String>,
|
|
|
|
prefix2: Interned<String>,
|
2023-02-21 09:43:23 +01:00
|
|
|
proximity: u8,
|
2023-04-11 15:26:47 +02:00
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapCodec>(
|
2023-03-30 11:08:17 +02:00
|
|
|
self.txn,
|
2023-03-08 13:26:29 +01:00
|
|
|
(proximity, word1, prefix2),
|
2023-03-30 11:08:17 +02:00
|
|
|
&(
|
|
|
|
proximity,
|
|
|
|
self.word_interner.get(word1).as_str(),
|
|
|
|
self.word_interner.get(prefix2).as_str(),
|
|
|
|
),
|
|
|
|
&mut self.db_cache.word_prefix_pair_proximity_docids,
|
|
|
|
self.index.word_prefix_pair_proximity_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-02-21 09:43:23 +01:00
|
|
|
}
|
2023-03-30 11:08:17 +02:00
|
|
|
pub fn get_db_prefix_word_pair_proximity_docids(
|
2023-02-21 15:10:22 +01:00
|
|
|
&mut self,
|
2023-03-06 19:21:55 +01:00
|
|
|
left_prefix: Interned<String>,
|
|
|
|
right: Interned<String>,
|
2023-02-21 15:10:22 +01:00
|
|
|
proximity: u8,
|
2023-04-11 15:26:47 +02:00
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapCodec>(
|
2023-03-30 11:08:17 +02:00
|
|
|
self.txn,
|
2023-03-08 13:26:29 +01:00
|
|
|
(proximity, left_prefix, right),
|
|
|
|
&(
|
|
|
|
proximity,
|
2023-03-30 11:08:17 +02:00
|
|
|
self.word_interner.get(left_prefix).as_str(),
|
|
|
|
self.word_interner.get(right).as_str(),
|
2023-03-08 13:26:29 +01:00
|
|
|
),
|
2023-03-30 11:08:17 +02:00
|
|
|
&mut self.db_cache.prefix_word_pair_proximity_docids,
|
|
|
|
self.index.prefix_word_pair_proximity_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-02-21 15:10:22 +01:00
|
|
|
}
|
2023-04-04 17:04:46 +02:00
|
|
|
|
|
|
|
pub fn get_db_word_fid_docids(
|
|
|
|
&mut self,
|
|
|
|
word: Interned<String>,
|
|
|
|
fid: u16,
|
2023-04-11 15:26:47 +02:00
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapCodec>(
|
2023-04-04 17:04:46 +02:00
|
|
|
self.txn,
|
|
|
|
(word, fid),
|
|
|
|
&(self.word_interner.get(word).as_str(), fid),
|
|
|
|
&mut self.db_cache.word_fid_docids,
|
|
|
|
self.index.word_fid_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-04-04 17:04:46 +02:00
|
|
|
}
|
2023-04-12 11:40:44 +02:00
|
|
|
|
|
|
|
pub fn get_db_word_prefix_fid_docids(
|
|
|
|
&mut self,
|
|
|
|
word_prefix: Interned<String>,
|
|
|
|
fid: u16,
|
2023-04-12 16:53:11 +02:00
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapCodec>(
|
2023-04-12 11:40:44 +02:00
|
|
|
self.txn,
|
|
|
|
(word_prefix, fid),
|
|
|
|
&(self.word_interner.get(word_prefix).as_str(), fid),
|
|
|
|
&mut self.db_cache.word_prefix_fid_docids,
|
|
|
|
self.index.word_prefix_fid_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-04-12 11:40:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_db_word_fids(&mut self, word: Interned<String>) -> Result<Vec<u16>> {
|
|
|
|
let fids = match self.db_cache.word_fids.entry(word) {
|
|
|
|
Entry::Occupied(fids) => fids.get().clone(),
|
|
|
|
Entry::Vacant(entry) => {
|
2023-04-13 09:14:23 +02:00
|
|
|
let mut key = self.word_interner.get(word).as_bytes().to_owned();
|
|
|
|
key.push(0);
|
2023-04-12 11:40:44 +02:00
|
|
|
let mut fids = vec![];
|
|
|
|
let remap_key_type = self
|
|
|
|
.index
|
|
|
|
.word_fid_docids
|
|
|
|
.remap_types::<ByteSlice, ByteSlice>()
|
2023-04-13 09:14:23 +02:00
|
|
|
.prefix_iter(self.txn, &key)?
|
2023-04-12 11:40:44 +02:00
|
|
|
.remap_key_type::<StrBEU16Codec>();
|
|
|
|
for result in remap_key_type {
|
|
|
|
let ((_, fid), value) = result?;
|
|
|
|
// filling other caches to avoid searching for them again
|
2023-06-13 14:42:38 +02:00
|
|
|
self.db_cache.word_fid_docids.insert((word, fid), Some(Cow::Borrowed(value)));
|
2023-04-12 11:40:44 +02:00
|
|
|
fids.push(fid);
|
|
|
|
}
|
|
|
|
entry.insert(fids.clone());
|
|
|
|
fids
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(fids)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_db_word_prefix_fids(&mut self, word_prefix: Interned<String>) -> Result<Vec<u16>> {
|
|
|
|
let fids = match self.db_cache.word_prefix_fids.entry(word_prefix) {
|
|
|
|
Entry::Occupied(fids) => fids.get().clone(),
|
|
|
|
Entry::Vacant(entry) => {
|
2023-04-13 09:14:23 +02:00
|
|
|
let mut key = self.word_interner.get(word_prefix).as_bytes().to_owned();
|
|
|
|
key.push(0);
|
2023-04-12 11:40:44 +02:00
|
|
|
let mut fids = vec![];
|
|
|
|
let remap_key_type = self
|
|
|
|
.index
|
|
|
|
.word_prefix_fid_docids
|
|
|
|
.remap_types::<ByteSlice, ByteSlice>()
|
2023-04-13 09:14:23 +02:00
|
|
|
.prefix_iter(self.txn, &key)?
|
2023-04-12 11:40:44 +02:00
|
|
|
.remap_key_type::<StrBEU16Codec>();
|
|
|
|
for result in remap_key_type {
|
|
|
|
let ((_, fid), value) = result?;
|
|
|
|
// filling other caches to avoid searching for them again
|
2023-06-13 14:42:38 +02:00
|
|
|
self.db_cache
|
|
|
|
.word_prefix_fid_docids
|
|
|
|
.insert((word_prefix, fid), Some(Cow::Borrowed(value)));
|
2023-04-12 11:40:44 +02:00
|
|
|
fids.push(fid);
|
|
|
|
}
|
|
|
|
entry.insert(fids.clone());
|
|
|
|
fids
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(fids)
|
|
|
|
}
|
2023-04-13 10:46:09 +02:00
|
|
|
|
2023-04-24 09:59:30 +02:00
|
|
|
pub fn get_db_word_position_docids(
|
|
|
|
&mut self,
|
|
|
|
word: Interned<String>,
|
|
|
|
position: u16,
|
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapCodec>(
|
2023-04-24 09:59:30 +02:00
|
|
|
self.txn,
|
|
|
|
(word, position),
|
|
|
|
&(self.word_interner.get(word).as_str(), position),
|
|
|
|
&mut self.db_cache.word_position_docids,
|
|
|
|
self.index.word_position_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-04-24 09:59:30 +02:00
|
|
|
}
|
|
|
|
|
2023-04-13 10:46:09 +02:00
|
|
|
pub fn get_db_word_prefix_position_docids(
|
|
|
|
&mut self,
|
|
|
|
word_prefix: Interned<String>,
|
|
|
|
position: u16,
|
|
|
|
) -> Result<Option<RoaringBitmap>> {
|
2023-06-13 14:42:38 +02:00
|
|
|
DatabaseCache::get_value::<_, _, CboRoaringBitmapCodec>(
|
2023-04-13 10:46:09 +02:00
|
|
|
self.txn,
|
|
|
|
(word_prefix, position),
|
|
|
|
&(self.word_interner.get(word_prefix).as_str(), position),
|
|
|
|
&mut self.db_cache.word_prefix_position_docids,
|
|
|
|
self.index.word_prefix_position_docids.remap_data_type::<ByteSlice>(),
|
2023-06-13 14:42:38 +02:00
|
|
|
)
|
2023-04-13 10:46:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_db_word_positions(&mut self, word: Interned<String>) -> Result<Vec<u16>> {
|
|
|
|
let positions = match self.db_cache.word_positions.entry(word) {
|
|
|
|
Entry::Occupied(positions) => positions.get().clone(),
|
|
|
|
Entry::Vacant(entry) => {
|
|
|
|
let mut key = self.word_interner.get(word).as_bytes().to_owned();
|
|
|
|
key.push(0);
|
|
|
|
let mut positions = vec![];
|
|
|
|
let remap_key_type = self
|
|
|
|
.index
|
|
|
|
.word_position_docids
|
|
|
|
.remap_types::<ByteSlice, ByteSlice>()
|
|
|
|
.prefix_iter(self.txn, &key)?
|
|
|
|
.remap_key_type::<StrBEU16Codec>();
|
|
|
|
for result in remap_key_type {
|
|
|
|
let ((_, position), value) = result?;
|
|
|
|
// filling other caches to avoid searching for them again
|
2023-06-13 14:42:38 +02:00
|
|
|
self.db_cache
|
|
|
|
.word_position_docids
|
|
|
|
.insert((word, position), Some(Cow::Borrowed(value)));
|
2023-04-13 10:46:09 +02:00
|
|
|
positions.push(position);
|
|
|
|
}
|
|
|
|
entry.insert(positions.clone());
|
|
|
|
positions
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(positions)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_db_word_prefix_positions(
|
|
|
|
&mut self,
|
|
|
|
word_prefix: Interned<String>,
|
|
|
|
) -> Result<Vec<u16>> {
|
|
|
|
let positions = match self.db_cache.word_prefix_positions.entry(word_prefix) {
|
|
|
|
Entry::Occupied(positions) => positions.get().clone(),
|
|
|
|
Entry::Vacant(entry) => {
|
|
|
|
let mut key = self.word_interner.get(word_prefix).as_bytes().to_owned();
|
|
|
|
key.push(0);
|
|
|
|
let mut positions = vec![];
|
|
|
|
let remap_key_type = self
|
|
|
|
.index
|
|
|
|
.word_prefix_position_docids
|
|
|
|
.remap_types::<ByteSlice, ByteSlice>()
|
|
|
|
.prefix_iter(self.txn, &key)?
|
|
|
|
.remap_key_type::<StrBEU16Codec>();
|
|
|
|
for result in remap_key_type {
|
|
|
|
let ((_, position), value) = result?;
|
|
|
|
// filling other caches to avoid searching for them again
|
|
|
|
self.db_cache
|
|
|
|
.word_prefix_position_docids
|
2023-06-13 14:42:38 +02:00
|
|
|
.insert((word_prefix, position), Some(Cow::Borrowed(value)));
|
2023-04-13 10:46:09 +02:00
|
|
|
positions.push(position);
|
|
|
|
}
|
|
|
|
entry.insert(positions.clone());
|
|
|
|
positions
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(positions)
|
|
|
|
}
|
2023-02-21 09:43:23 +01:00
|
|
|
}
|