I'd like to order a list of pages by unique pageviews. Each page is generated dynamically like this mysite.com?page_id=1 with the page_id corresponding to a row in my db.
What is a good way to order by unique pageviews? Some ideas I had are querying google analytics, storing an ip/page_id pair in my db and then incrementing the page_id rows if there is not match (this works because it doesn't have to be absolutely perfect).
Thanks