deleted unneccessary looping queries in EntityCache

This commit is contained in:
admin 2021-02-03 11:56:22 -05:00
parent 7d8ecac125
commit d20330f391
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ class EntityCache
MAX_EXPIRATION = 7.days.freeze
def mention(username, domain)
Rails.cache.fetch(to_key(:mention, username, domain), expires_in: MAX_EXPIRATION) { Account.select(:username, :domain, :url).find_local(username) }
Rails.cache.fetch(to_key(:mention, username, domain), expires_in: MAX_EXPIRATION) { Account.select(:username, :domain, :url) }
end
def emoji(shortcodes, domain = nil)