Hi Akira, akira wrote: > A trivial thing, How does one limit results fetched from a database? result = store.find(...) result.config(limit=10) You can specify an offset, too: result = store.find(...) result.config(offset=10, limit=10) Thanks, J.