* 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
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			981 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			981 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| # == Schema Information
 | |
| #
 | |
| # Table name: account_stats
 | |
| #
 | |
| #  id              :bigint(8)        not null, primary key
 | |
| #  account_id      :bigint(8)        not null
 | |
| #  statuses_count  :bigint(8)        default(0), not null
 | |
| #  following_count :bigint(8)        default(0), not null
 | |
| #  followers_count :bigint(8)        default(0), not null
 | |
| #  created_at      :datetime         not null
 | |
| #  updated_at      :datetime         not null
 | |
| #  last_status_at  :datetime
 | |
| #
 | |
| 
 | |
| class AccountStat < ApplicationRecord
 | |
|   belongs_to :account, inverse_of: :account_stat
 | |
| 
 | |
|   update_index('accounts#account', :account) if Chewy.enabled?
 | |
| 
 | |
|   def increment_count!(key)
 | |
|     update(attributes_for_increment(key))
 | |
|   end
 | |
| 
 | |
|   def decrement_count!(key)
 | |
|     update(key => [public_send(key) - 1, 0].max)
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def attributes_for_increment(key)
 | |
|     attrs = { key => public_send(key) + 1 }
 | |
|     attrs[:last_status_at] = Time.now.utc if key == :statuses_count
 | |
|     attrs
 | |
|   end
 | |
| end
 |