i am looking for best aproach from perfomance point of view , to show Resultset on webpage partially , lets say by 10 item per page and if user want to see more result, he p
If you are using JPA (which works quite well on GAE), you can paginate a result set using
Query#setFirstResult(int startPosition)
Query#setMaxResults(int maxResult)
This article might be helpful: Paging large data sets with a LazyList