forked from treehouse/mastodon
Use Account.local.sum(statuses_count) instead of Status.local.count (#4996)
It is faster.signup-info-prompt
parent
66be6475b6
commit
9619b7f727
|
@ -21,7 +21,7 @@ class InstancePresenter
|
||||||
end
|
end
|
||||||
|
|
||||||
def status_count
|
def status_count
|
||||||
Rails.cache.fetch('local_status_count') { Status.local.count }
|
Rails.cache.fetch('local_status_count') { Account.local.sum(:statuses_count) }
|
||||||
end
|
end
|
||||||
|
|
||||||
def domain_count
|
def domain_count
|
||||||
|
|
Loading…
Reference in New Issue