Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 693 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 693 Bytes

OurSearchEngine

A simple search engine written in Cpp

Features

  • Infrastructure based on inverted indexes.
  • Parallelised Index Creation Process.
  • Using SkipList and FST to improve the query performance of the project.
  • Github CI support.

Architecture

Architecture

How to use

Build

cd OurSearchEngine
git submodule update --init --recursive
cmake -B build
cmake --build build

Use

You could refer to the documents in test directory to use this library.

Reference

  1. Lucene