Commit graph

9 commits

Author SHA1 Message Date
noellabo
bbf0df5a11 search (WIP) 2023-02-06 16:28:37 +09:00
noellabo
8b3ef9cc81 Add full text search for accounts 2023-01-16 12:58:29 +09:00
noellabo
8ebcbaded3 Bump chewy from 5.2.0 to 7.2.2 2022-05-11 00:48:03 +09:00
noellabo
46d05ea6e8 Fix ES setting for Account Full Text Search 2022-05-11 00:48:02 +09:00
noellabo
176dd499b7 Add account note to search index 2022-05-11 00:48:02 +09:00
noellabo
c6417be067 Add group suggestion 2022-05-11 00:48:02 +09:00
noellabo
9fdfc2d8d5 Add account subscribe support to WebUI 2021-08-12 07:08:36 +09:00
Eugen Rochko
70da6d6630
Fix accounts search by full/partial display name and others (#11580)
- Restrict followers counts to local users to minimize local advantage
- Fix emoji shortcodes causing error in search
- Fix search syntax parse errors not being caught
2019-08-16 13:00:30 +02:00
Eugen Rochko
8fdff2748f
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
2019-08-16 01:24:03 +02:00