Skip to content

Commit

Permalink
Boost ios by switching to rating count
Browse files Browse the repository at this point in the history
  • Loading branch information
ddxv committed Oct 23, 2023
1 parent 5228565 commit 5dcea21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adscrawler/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def query_store_apps(
ELSE 1
END),
--sa.updated_at
COALESCE(review_count, 0) + GREATEST(COALESCE(installs, 0), COALESCE(rating_count, 0) * 50) DESC NULLS LAST
COALESCE(review_count, 0) + GREATEST(COALESCE(installs, 0), COALESCE(rating_count, 0) * 50)
DESC NULLS LAST
{limit_str}
"""
Expand Down

0 comments on commit 5dcea21

Please sign in to comment.