我需要更新分片计数器并返回当前计数。我在这里遵循示例:https ://developers.google.com/appengine/articles/sharding_counters
但我不确定您是否可以通过函数间接执行事务查询。这是示例代码:
@db.transactional
def updateCounter(name):
increment(name)
get_count(name)
updateCounter(TOTAL_USERS)
这会返回当前计数增加吗?还是这种方法无效,因为数据库查询位于 @db.transactional 函数之外?