Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,34 @@
#include "search/base/text_index/mem.hpp"
#include "base/stl_helpers.hpp"
using namespace std;
namespace search_base
{
void MemTextIndex::AddPosting(Token const & token, Posting const & posting)
{
m_postingsByToken[token].emplace_back(posting);
}
void MemTextIndex::SortPostings()
{
for (auto & entry : m_postingsByToken)
{
// A posting may occur several times in a document,
// so we remove duplicates for the docid index.
// If the count is needed for ranking it may be stored
// separately.
base::SortUnique(entry.second);
}
}
void MemTextIndex::BuildDictionary()
{
vector<Token> tokens;
tokens.reserve(m_postingsByToken.size());
for (auto const & entry : m_postingsByToken)
tokens.emplace_back(entry.first);
m_dictionary.SetTokens(std::move(tokens));
}
} // namespace search_base