Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With App Engine Version 1.3.6, released Aug-17-2010, the 1000-item fetch() limit was removed.

Does that mean that ModelClass.all().fetch(limit=99999999999) and [e for e in ModelClass.all()] are equivalent?

If they differ, they may differ in subtle ways. For example, is the number of RPC calls equivalent?

share|improve this question

1 Answer

up vote 4 down vote accepted

Though the 1000 entity limit was removed from fetch, you still need to provide an explicit upper bound of your own. Of course, if you make this sufficiently large then you'll retrieve all of your entities.

The iterator approach you proposed above is functionally equivalent (if the limit passed to fetch is big enough to retrieve all entities). However, they do have different performance characteristics. In particular, the iterator fetches a small-ish chunk of entities at once. If you have a large number of entities, then the version using the iterator will make many more RPCs.

share|improve this answer
Thanks, that was my suspicion. (Also: I updated my question -- as I wrote it, I was thinking limit=BIG_HUGE_NUM but I didn't put it in the original question.) – Dave Peck Jan 15 '11 at 3:09
11  
fetch() no longer benefits from using fewer RPCs than the iterator unless the special batch_size parameter is supplied. However, batch_size can also be supplied to run(), so fetch() has no unique performance benefits. See bjk5.com/post/23601113262/… – kamens May 23 '12 at 9:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.