I ported my Django app over to Google App Engine (http://
www.friendfeedstats.com) but have a big problem. FriendFeed Stats
relies on counting. When I had it on my server it was indexing over
100000 entries and used count() just fine. Now that I've ported it to
Google App Engine and let it run for a little while I'm seeing counts
of 1001 all over the place. This leads me to believe that you are
limiting count() queries to 1000.
Is there anyway to fix this? Note that I do not want the actual rows;
just the count.