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.
Thanksdjangoappengine supports cursors:
from djangoappengine.db.utils import get_cursor, set_cursor
https://bitbucket.org/wkornewald/djangoappengine/src/9689b94680ff/db/utils.py
精彩评论