2

我有下面的查询,你可以在我的循环中看到我添加了每条消息。我想减少到数据库的总往返次数。这是我可以一次处理批量创建的消息的一种方式,比如 20 条吗?这对速度有帮助吗?欢迎任何建议。

class ProcessRequests(Task):
    """
    Celery Task to start request to process that are not scheduled.
    """
    name = "Request to Process"
    max_retries = 1
    default_retry_delay = 3

    def run(self, batch):
        # Only run this task on non-scheduled tasks
        if batch.status != "Scheduled":
            q = Contact.objects.filter(contact_owner=batch.user, subscribed=True)
            if batch.group == None:
                q = q.filter(id=batch.contact_id)
            else:
                q = q.filter(group=batch.group)

            for e in q:
                msg = Message.objects.create(
                    recipient_number=e.mobile,
                    content=batch.content,
                    sender=e.contact_owner,
                    billee=batch.user,
                    sender_name=batch.sender_name
                )
                gateway = Gateway.objects.get(pk=2)
                msg.send(gateway)
4

1 回答 1

2

您可以使用bulk_create.

另请注意,您gateway每次通过循环都会获得相同的对象,最好在循环之外获得一次并每次使用相同的对象。

于 2013-08-22T11:41:56.983 回答