Giter Site home page Giter Site logo

cpp-searchlib's Introduction

cpp-searchlib

C++17 full-text search engine library (WIP. Far from release...)

TODO:

  • Save/load index to/from storage
  • Posting list compression
  • Search scope (document, section, paragraph)
using namespace searchlib;

std::vector<std::string> documents = {
  "This is the first document.",
  "This is the second document.",
  "This is the third document. This is the second sentence in the third document.",
  "This is not the first document."
};

// Indexing...
auto normalizer = [](auto str) { return unicode::to_lowercase(str); };

auto index = make_in_memory_index<TextRange>(normalizer, [&](auto &indexer) {
  size_t document_id = 0;
  for (const auto &doc : documents) {
    indexer.index_document(document_id, UTF8PlainTextTokenizer(doc));
    document_id++;
  }
};

// Search...
auto expr = parse_query(*index, normalizer, R"( first not | "the second sentence" )");

auto result = perform_search(*index, *expr);
result->size(); // 2

result->document_id(0); // 2
result->search_hit_count(0); // 1

  // 'the second sentence'
  result->term_position(0, 1); // 7
  result->term_length(0, 1); // 3
  auto [pos, len] = index->text_range(*result, 0, 1); // 36, 19

result->document_id(1); // 3
result->search_hit_count(1); // 2

  // 'not'
  result->term_position(1, 0); // 2
  result->term_length(1, 0); // 1
  auto [pos, len] = index->text_range(*result, 1, 0); // 8, 3

  // 'first'
  result->term_position(1, 1); // 4
  result->term_length(1, 1); // 1
  auto [pos, len] = index->text_range(*result, 1, 1); // 16, 5

cpp-searchlib's People

Contributors

yhirose avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.