From f29300bf1a57a96dccacc20daade126dbea42f74 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 7 Jan 2008 00:33:54 +0000 Subject: [PATCH] Stop trying to report on the number of ways with tags because (a) almost all ways have tags so it isn't very interesting and (b) it locks up the API every night as it involved a join to a MyISAM table. --- script/statistics | 2 -- 1 file changed, 2 deletions(-) diff --git a/script/statistics b/script/statistics index 0d300f706..e76028114 100755 --- a/script/statistics +++ b/script/statistics @@ -19,7 +19,6 @@ begin tracepoint_count = Tracepoint.count() node_count = Node.count(:conditions => "visible = true") way_count = Way.count(:conditions => "visible = true") - tagged_way_count = Way.count(:conditions => "visible = true AND EXISTS (SELECT * FROM current_way_tags WHERE id = current_ways.id AND k <> 'created_by')") relation_count = Relation.count(:conditions => "visible = true") puts "" @@ -27,7 +26,6 @@ begin puts "" puts "" puts "" - puts "" puts "" puts "
Number of uploaded GPS points#{tracepoint_count}
Number of nodes#{node_count}
Number of ways#{way_count}
Number of ways with tags#{tagged_way_count}
Number of relations#{relation_count}
" -- 2.43.2