mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
This saves something like 15ms on our 1000 message get_old_messages queries, and will save even more when we start sending JSON dumps into our memcached system. We need to install python-ujson on servers and dev instances before pushing this to prod. (imported from commit 373690b7c056d00d2299a7588a33f025104bfbca)
25 lines
773 B
Python
25 lines
773 B
Python
from __future__ import absolute_import
|
|
|
|
import ujson
|
|
from postmonkey import PostMonkey
|
|
from django.core.management.base import BaseCommand
|
|
from django.conf import settings
|
|
|
|
from zephyr.lib.queue import SimpleQueueClient
|
|
|
|
class Command(BaseCommand):
|
|
pm = PostMonkey(settings.MAILCHIMP_API_KEY, timeout=10)
|
|
|
|
def subscribe(self, ch, method, properties, data):
|
|
self.pm.listSubscribe(
|
|
id=settings.HUMBUG_FRIENDS_LIST_ID,
|
|
email_address=data['EMAIL'],
|
|
merge_vars=data['merge_vars'],
|
|
double_optin=False,
|
|
send_welcome=False)
|
|
|
|
def handle(self, *args, **options):
|
|
q = SimpleQueueClient()
|
|
q.register_json_consumer("signups", self.subscribe)
|
|
q.start_consuming()
|