2018-10-21 16:40:41 +02:00
# pentium
A search engine based on the [blog posts serie ](https://blog.algolia.com/inside-the-algolia-engine-part-1-indexing-vs-search/ ) of the great Algolia company.
This is a library, this means that binary are not part of this repository
but since I'm still nice I have made some examples for you in the `examples/` folder.
2018-09-15 21:25:04 +02:00
## Usage
2018-10-21 16:40:41 +02:00
Pentium work with an index like most of the search engines.
So to test the library you can create one by indexing a simple csv file.
2018-09-15 21:25:04 +02:00
```bash
2018-10-21 16:40:41 +02:00
cargo build --release --example csv-indexer
time ./target/release/examples/csv-indexer --stop-words misc/en.stopwords.txt misc/kaggle.csv
2018-09-15 21:25:04 +02:00
```
2018-10-21 16:40:41 +02:00
The `en.stopwords.txt` file here is a simple file that contains one stop word by line (e.g. or, and...).
2018-10-04 13:55:29 +02:00
2018-09-15 21:25:04 +02:00
Once the command finished indexing you will have 3 files that compose the index:
- The `xxx.map` represent the fst map.
- The `xxx.idx` represent the doc indexes matching the words in the map.
- The `xxx.sst` is a file that contains all the fields and the values asociated with it, it is passed to the internal RocksDB.
2018-10-21 16:40:41 +02:00
Now you can easily run the `serve-console` or `serve-http` examples with the name of the dump. (e.g. relaxed-colden).
2018-09-15 21:25:04 +02:00
```bash
2018-10-21 16:40:41 +02:00
cargo build --release --example serve-console
./target/release/examples/serve-console relaxed-colden
2018-09-15 21:25:04 +02:00
```