Google App Engine:使用TaskQueue修改1000个实体

时间:2014-07-15 15:09:46

标签: python google-app-engine app-engine-ndb task-queue

我希望使用任务队列修改1000个实体,正如我在原始问题中建议的Zig Mandel:Google App Engine: Modifying 1000 entities

我的 UserAccount 类似:

class UserAccount(ndb.Model):
    email = ndb.StringProperty()

部分UserAccount email包含大写字母(例如:JohnathanDough@email.com),我想将email.lower()应用于每个实体的电子邮件。

所以我设置了这样一个任务队列:

class LowerEmailQueue(BaseHandler):

    def get(self):
        all_accounts = UserAccount.query().fetch()
        for a in all_accounts:
            taskqueue.add(url = '/lower-email', params = {'account_id': a.key.id()})


class LowerEmail(BaseHandler):

    def post(self):
        account_id = self.request.get('account_id')
        account = UserAccount.get_by_id(int(account_id))
        account.email = account.email.lower()
        account.put()

app = webapp2.WSGIApplication([
    ('/', MainPage),
    ('/lower-email-queue', LowerEmailQueue),
    ('/lower-email', LowerEmail),


], debug=True)

我还没有运行它,因为我想防止对我的数据造成灾难性的损害。这有用吗?

1 个答案:

答案 0 :(得分:2)

不,实际上这根本不会做任何事情,因为你没有对降低的电子邮件地址做任何事情。您需要将其实际分配回实体。

account.email = account.email.lower()