[google-appengine] Re: Retrieving More than 1000 entities

2008-10-02 Thread Tony Arkles
The real goal is to figure out how *not* to do that. :) What are you trying to accomplish? On Oct 2, 6:15 pm, "Venkatesh Rangarajan" <[EMAIL PROTECTED]> wrote: > Is it possible to retrieve more than 1000 entities ? > > Has anyone figured a way to do this ? --~--~-~--~~

[google-appengine] Re: Retrieving More than 1000 entities

2008-10-02 Thread theo
It's easy. Just keep on calling .fetch(1000, 1000 * n) where n gets incremented every time On Oct 2, 6:42 pm, Tony Arkles <[EMAIL PROTECTED]> wrote: > The real goal is to figure out how *not* to do that.  :) > > What are you trying to accomplish? > > On Oct 2, 6:15 pm, "Venkatesh Rangarajan" > >

[google-appengine] Re: Retrieving More than 1000 entities

2008-10-02 Thread Tony Arkles
Theo, I don't think that will work. From what I understand, the 1000 entity limit is applied before the offset is considered. On Oct 2, 8:46 pm, theo <[EMAIL PROTECTED]> wrote: > It's easy.  Just keep on calling .fetch(1000, 1000 * n) where n gets > incremented every time > > On Oct 2, 6:42 pm

[google-appengine] Re: Retrieving More than 1000 entities

2008-10-02 Thread Venkatesh Rangarajan
Theo, that will not work. It will aways get the same 1000..and the only thing offset does is get 1 to 100 or 100 to 200. Tony : Well, i have a simple search http://payrate.appspot.com/infosys_salary This search returns more than 1000 records..who do i show them all ? My page explodes after page

[google-appengine] Re: Retrieving More than 1000 entities

2008-10-03 Thread José Oliver Segura
On Fri, Oct 3, 2008 at 5:36 AM, Venkatesh Rangarajan <[EMAIL PROTECTED]> wrote: > Theo, > > that will not work. It will aways get the same 1000..and the only thing > offset does is get 1 to 100 or 100 to 200. > > Tony : Well, i have a simple search > http://payrate.appspot.com/infosys_salary > > T

[google-appengine] Re: Retrieving More than 1000 entities

2008-10-03 Thread Aral Balkan
There is now a 1,000 limit on offsets (which was introduced without any notice). Effectively, your only option is to do what José recommends. The docs must be updated to reflect this limit and the fact that everyone is basically forced to keep manual numeric keys until either sortable keys are i

[google-appengine] Re: Retrieving More than 1000 entities

2008-10-03 Thread Barry Hunter
On Fri, Oct 3, 2008 at 8:10 PM, Aral Balkan <[EMAIL PROTECTED]> wrote: > > There is now a 1,000 limit on offsets (which was introduced without > any notice). FWIW, From the very beginning I understood it as only every having access to the first 1000 results (regardless of offset) This is mention