Revert "deleted unneccessary looping queries in EntityCache"
This reverts commit d20330f391
.
This commit is contained in:
parent
c30f600f09
commit
e4a214a0c4
|
@ -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) }
|
||||
Rails.cache.fetch(to_key(:mention, username, domain), expires_in: MAX_EXPIRATION) { Account.select(:username, :domain, :url).find_local(username) }
|
||||
end
|
||||
|
||||
def emoji(shortcodes, domain = nil)
|
||||
|
|
Loading…
Reference in New Issue