mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Use Account.local.sum(statuses_count) instead of Status.local.count (#4996)
It is faster.
This commit is contained in:
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
Block a user