]> cat aescling's git repositories - mastodon.git/commit
Add more accurate account search (#11537)
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 15 Aug 2019 23:24:03 +0000 (01:24 +0200)
committerGitHub <noreply@github.com>
Thu, 15 Aug 2019 23:24:03 +0000 (01:24 +0200)
commit8fdff2748ffbc4ce3d36c75f2bd33182b641e895
treeec8d1455c492e9b454ddf55dcb914bbe37007d6b
parent2ca6b2bb6c9e811ad98e3df23e70efbf22882e42
Add more accurate account search (#11537)

* Add more accurate account search

When ElasticSearch is available, a more accurate search is implemented:

- Using edge n-gram index for acct and display name
- Using asciifolding and cjk width normalization on display names
- Using Gaussian decay on account activity for additional scoring (recency)
- Using followers/friends ratio for additional scoring (spamminess)
- Using followers number for additional scoring (size)

The exact match precedence only takes effect when the input conforms
to the username format and the username part of it is complete, i.e.
when the user started typing the domain part.

* Support single-letter usernames

* Fix tests

* Fix not picking up account updates

* Add weights and normalization for scores, skip zero terms queries

* Use local counts for accounts index, adjust search parameters

* Fix mistakes

* Using updated_at of accounts is inadequate for remote accounts
app/chewy/accounts_index.rb [new file with mode: 0644]
app/models/account.rb
app/models/account_stat.rb
app/services/account_search_service.rb
spec/services/account_search_service_spec.rb