Skip to content

Commit

Permalink
Update 2024-11-29-貧乏企業名サジェスト機能開発.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tubone24 authored Dec 1, 2024
1 parent d1ab6d8 commit 5c2b1d3
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ Algoliaでも直接APIをフロントエンドから叩くことでバックエ
- Elasticsearchのような全文検索エンジンを構築し、サジェストしたい単語を登録しておく
- フロントエンドから直接アクセスする

## データソースはどうする?

[法人番号システム Web-API](https://www.houjin-bangou.nta.go.jp/pc/webapi/riyokiyaku.html)

### フロントエンド実装

一からAutocompleteを作るのは大変なのでCSSフレームワークに用意されているAutocompleteを賢く使うことが重要です。
Expand Down Expand Up @@ -82,8 +86,10 @@ Algoliaでも直接APIをフロントエンドから叩くことでバックエ

先に答えを書きます。

「ワイルドカードを使わず、nグラムフィルターを作って乗り切って」です。
「ワイルドカードを使わず、[N-gram tokenizer](https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-ngram-tokenizer.html)を作って乗り切って」です。

どういうことかというと、ワイルドカード検索という仕組みがElasticsearchにあるのですが、こちらがかなり負荷の高い検索方式なので、細かく[N-gram tokenizer](https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-ngram-tokenizer.html)を使って転置インデックスを作ってあげるのがよさそうです。


どういうことかというと、ワイルドカード検索という仕組みがElasticsearchにあるのですが、こちらがかなり負荷の高い検索方式なので、細かくnグラムを使って転置インデックスを作ってあげるのがよさそうです。


0 comments on commit 5c2b1d3

Please sign in to comment.