我在 python 2.7 上使用 appengine,并通过以下调用查询数据库实体:
query = Model.all().filter("profile =", p_key)
query.order('-created')
query.run(limit=10)
logging.debug('count is %i' % query.count()) #shows 35 instead of 10
我也尝试过使用 query.fetch(10) 但仍然返回所有结果而不是限制。有任何想法吗?