Re: best paging strategies for large datasets?

Поиск
Список
Период
Сортировка
От silly sad
Тема Re: best paging strategies for large datasets?
Дата
Msg-id 4BEBBB3A.1060104@bankir.ru
обсуждение исходный текст
Ответ на Re: best paging strategies for large datasets?  (Louis-David Mitterrand <vindex+lists-pgsql-sql@apartia.org>)
Ответы Re: best paging strategies for large datasets?  (Justin Graf <justin@magwerks.com>)
Список pgsql-sql
>> First u count(*) the rows and select a requested page
>> returning to a client the count result bundled "with a page of rows"
>>
>> (1) client renders the acquired rows
>> (2)__memorize__ what part of the data he just got
>> (3) and stores the count result to calculate "the pager div"
>>
>> all the subsequent clicks on "the pager div" should not immediately
>> generate requests and decides if the request is needed.
>
> Yes, rendering the results throught ajax is a good idea, but one has to
> be careful not to expose one's LIMIT and OFFSET to the client, but only
> the "page" number. Or else the client could query the whole data set. A
> lot of "professional" web site have that hole.
>

this is not a hole, it is only a matter of aesthetic


В списке pgsql-sql по дате отправления:

Предыдущее
От: Louis-David Mitterrand
Дата:
Сообщение: Re: best paging strategies for large datasets?
Следующее
От: Jasen Betts
Дата:
Сообщение: Re: Greetings folks, dumb question maybe?