If I want to get a property (no filtering) of 50,000 entities and display them all on one page, what would be the most efficient way to do that?
Should I fetch() then in pieces of 1000 at time or use the query iterator?
The entities themselves are small, having one or two StringProperty (unindexed, because no filtering is required), which are < 50 bytes.
PS: I want to display all 50k at once (ie. without the need for a "next" link)