django-after-response
django-after-response copied to clipboard
Simple asynchronous execution
I don't know how exactly this error occurs, but in my case i get the following error: ``` No handlers could be found for logger "after_response.signals" ``` More disturbing however...
Because the setting is loaded to local variable, these test decodators do not work. I do not any problem to load the setting from the settings every time? Now I...
in some cases sequence of task consuming is important -- most ofen people would expect fifo.
I need to import a model into the after response, but I can not. import after_response @after_response.enable def example(): from automacao.models import Automacao Automacao.objects.count() ... {ProgrammingError}relation "automacao" does not exist...
I haven't been able to get any threading.Thread to work with uwsgi, including when using the django-after-response decorators. Has anyone experienced the same problem? I've actually written a more detailed...
The function_queue variable is shared between all the threads on a process. If thread 1 adds something to the queue and then does some more processing and thread 2 comes...
For me this is magic. I have no clue how I can execute code after the http response was sent to the client with django. Could you please elaborate the...