glidernet / ogn-ddb

OGN Devices DataBase
11 stars 15 forks source link

add paging support to the JSON REST requests #21

Open wbuczak opened 8 years ago

wbuczak commented 8 years ago

Hi

Some time ago you implemented the JSON REST access to the OGN ddb. Thanks for that!

Now, seeing the growing number of records, I was wondering if you could enrich your service by adding the support of "from/to" url parameters, so that we could have paging?

That would make the browsing page:

http://wiki.glidernet.org/ddb-list

much more responsive.

example

?from=0&to=100 (could be ex. left inlcusive, right -exclusive - give me the recors 0-99)

?from=100&to=200 (records 100-199)

and so on...

Thanks!