4

How can I use a query cursor with Django-Nonrel? If there is no way currently, it would be appreciated to tell me where to look at in Django-Nonrel. http://code.google.com/appengine/docs/python/datastore/queries.html#Query_Cursors

I'm using Paginator from Django, but it's apparently inefficient with large data.
Thanks

Yoo Matsuo
  • 2,361
  • 2
  • 28
  • 41

1 Answers1

4

djangoappengine supports cursors:

from djangoappengine.db.utils import get_cursor, set_cursor

https://bitbucket.org/wkornewald/djangoappengine/src/9689b94680ff/db/utils.py

Drew Sears
  • 12,812
  • 1
  • 32
  • 41