mastodon/app/models
unarist 004672aa6c Fix tag search order and not to use tsvector (#3611)
* Sort results by the name
* Switch search method to simple `LIKE` matching instead of tsvector/tsquery

Previously we used scores from ts_rank_cd() to sort results, but it didn't work
because the function returns same score for all results. It's not for calculate
similarity of single words. Sometimes this bug even push out exact matching tag
from results.

Additionally, PostgreSQL supports prefix searching with standard btree index.
Using it offers simpler code, but also less index size and some speed.
2017-06-06 16:07:06 +02:00
..
concerns Introduce StatusThreadingConcern (#3490) 2017-06-05 16:07:44 +02:00
form
web
account.rb Added support for configurable reserved usernames (fix of #1382) (#3566) 2017-06-05 01:03:45 +02:00
account_domain_block.rb
account_filter.rb
application_record.rb
block.rb
conversation.rb
conversation_mute.rb
domain_block.rb
export.rb
favourite.rb
feed.rb
follow.rb
follow_request.rb
import.rb
instance.rb Add Instance class to list admin records (#3443) 2017-05-31 20:38:44 +02:00
media_attachment.rb
mention.rb Misc tidying and clean ups (#3445) 2017-05-31 20:38:17 +02:00
mute.rb
notification.rb Update Rails to version 5.1.1 (#3121) 2017-06-01 20:53:37 +02:00
preview_card.rb
remote_follow.rb
report.rb
report_filter.rb
setting.rb
status.rb Introduce StatusThreadingConcern (#3490) 2017-06-05 16:07:44 +02:00
stream_entry.rb
subscription.rb
tag.rb Fix tag search order and not to use tsvector (#3611) 2017-06-06 16:07:06 +02:00
user.rb Update Rails to version 5.1.1 (#3121) 2017-06-01 20:53:37 +02:00
web.rb