def get(self):
links = Link.all().order("author")
response = ""
links.fetch(10)
for link in links:
response += "[link][/link]"
For some reason, that code is taking up an obnoxious amount of CPU, and is eventually just timing out, when run on a database of over 8,000 entries. Isn't App Engine supposed to be able to handle large datasets? Am I doing something stupid?