Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shmokmt/tinysearch

tiny full-text search engine from scratch
https://github.com/shmokmt/tinysearch

full-text-search

Last synced: 20 days ago
JSON representation

tiny full-text search engine from scratch

Awesome Lists containing this project

README

        

# tinysearch

![reviewdog](https://github.com/shmokmt/tinysearch/workflows/reviewdog/badge.svg)

Tiny full-text search engine for learning

- Go
- inverted index
- tf-idf
- MySQL8.x

## How to dev

```sh
docker-compose up -d
# set env
export INDEX_DIR_PATH="./testdata/index"
# create index
go run ./cmd/tinysearch/main.go create ./testdata/document
# search by full-text search engine
go run ./cmd/tinysearch/main.go search "qurrel sir"
```

## See Also

- [Go で検索エンジンに入門する本](https://booth.pm/ja/items/1576277)