该项目实现了弹性倒排索引搜索
This Application is an implementation of Elastic Search indexing algorithm which is designed to allow for fas full-text search.
An Inverted-index consists of a list of all the unique words that appear in any document, and for each word, a list of the documents in which it appears.
[
{
"title": "This is a sample title",
"text": "And this is a sample text"
}
]
This can be accessed here.
It can be used locally with the following steps
git clone https://github.com/andela-aatanda/checkpoint1-inverted-index.git
cd checkpoint1-inverted-index
npm install
npm start
.json
extension can be indexed