Skip to main content

InvertedIndex

Struct InvertedIndex 

Source
pub struct InvertedIndex { /* private fields */ }
Expand description

Inverted index for lexical search

Implementations§

Source§

impl InvertedIndex

Source

pub fn new(config: BM25Config) -> Self

Create a new inverted index

Source

pub fn with_positions(self) -> Self

Enable position storage (for phrase queries)

Source

pub fn add_document(&self, text: &str) -> DocId

Index a document

Returns the assigned document ID.

Source

pub fn add_document_with_id(&self, doc_id: DocId, text: &str)

Index a document with specific ID

Source

pub fn clear(&self)

Remove every document, returning the index to its freshly-created state while preserving the BM25 configuration and position-storage setting.

Source

pub fn rebuild_from_documents<'a, I>(&self, documents: I)
where I: IntoIterator<Item = (DocId, &'a str)>,

Rebuild the entire index from an authoritative (doc_id, text) source.

§Durability contract (Task 7)

This index is an in-memory derived structure: it holds no WAL and is not itself crash-durable. The committed document store is the source of truth, and lexical search agrees with it only up to the last rebuild. The supported recovery model is therefore:

  1. Documents commit through the durable storage path (WAL/MVCC).
  2. On restart, the lexical index is reconstructed from the committed document store via this method — an O(corpus) bounded, deterministic pass (it clears first, so the result is a pure function of the input, independent of any prior in-memory state).
  3. Only then is lexical search served.

Because scores are order-independent (IDF is derived from (df, N) and avgdl from running totals, never cached), a rebuilt index is byte-for-byte equivalent in ranking to the index that produced the documents, so a query returns the same result set across a crash/restart boundary relative to one committed snapshot.

Source

pub fn add_document_tokens(&self, tokens: &[String]) -> DocId

Index a document from tokens

Source

pub fn add_document_tokens_with_id(&self, doc_id: DocId, tokens: &[String])

Index a document from tokens with specific ID

Source

pub fn remove_document(&self, doc_id: DocId) -> bool

Remove a document from the index

Source

pub fn search(&self, query: &str, limit: usize) -> Vec<(DocId, f32)>

Search the index

Returns document IDs with scores, sorted by score descending.

Source

pub fn search_tokens( &self, query_tokens: &[String], limit: usize, ) -> Vec<(DocId, f32)>

Search with pre-tokenized query

Source

pub fn get_posting_list(&self, term: &str) -> Option<PostingList>

Get posting list for a term

Source

pub fn num_documents(&self) -> usize

Get document count

Source

pub fn vocab_size(&self) -> usize

Get vocabulary size

Source

pub fn get_document_info(&self, doc_id: DocId) -> Option<DocumentInfo>

Get document info

Source

pub fn has_document(&self, doc_id: DocId) -> bool

Check if a document exists

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more