django-async-messages
django-async-messages copied to clipboard
Send asynchronous messages to users
AsyncMiddleware error when loading
mw_instance = middleware(handler) TypeError: object() takes no parameters This is the complete trace: System check identified no issues (0 silenced). May 24, 2019 - 5:18:33 PM Django version 2.1.7, using...
Because the read-modify-write sequence is not atomic, it is possible to lose messages when multiple tasks try to send a message concurrently. ```python messages = cache.get(user_key) or [] messages.append((message, level))...