How do you do something after you render the view? (Django) - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T17:10:07Zhttp://stackoverflow.com/feeds/question/1081340http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django0How do you do something after you render the view? (Django)rick2009-07-04T02:16:36Z2009-07-04T20:16:58Z
<p>I want to do something after I have rendered the view using </p>
<pre><code>return render_to_response()
</code></pre>
<p>Are signals the only way to do this? Do I need to write a custom signal or does request_finished give me enough information? Basically I need to know what page was rendered, and then do an action in response to that.</p>
<p>Thanks.</p>
<p>UPDATE FROM COMMENTS: I don't want to hold up the rendering of the page, so I want to render the page first and then do the action.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081352#10813520Answer by AlbertoPL for How do you do something after you render the view? (Django)AlbertoPL2009-07-04T02:28:08Z2009-07-04T02:28:08Z<p>In render to response, you pass the html page that you want displayed. That other page needs to send a post (via Javascript or something) that triggers the correct function in your views, then that view calls the correct next page to be shown.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081376#10813763Answer by S.Lott for How do you do something after you render the view? (Django)S.Lott2009-07-04T02:41:31Z2009-07-04T02:41:31Z<p>If you have a long-running process, you have two simple choices.</p>
<ol>
<li><p>Spawn a subprocess prior to sending the response page.</p></li>
<li><p>Create a "background service daemon" and pass work requests to it.</p></li>
</ol>
<p>This is all outside Django. You use <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess</a> or some other IPC method to communicate with the other process.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081441#10814414Answer by dar for How do you do something after you render the view? (Django)dar2009-07-04T03:44:31Z2009-07-04T03:44:31Z<p>A common way to do this is to use message queues. You place a message on the queue, and worker threads (or processes, etc.) consume the queue and do the work after your view has completed.</p>
<p>Google App Engine has the task queue api <a href="http://code.google.com/appengine/docs/python/taskqueue/" rel="nofollow">http://code.google.com/appengine/docs/python/taskqueue/</a>, amazon has the Simple Queue Service <a href="http://aws.amazon.com/sqs/" rel="nofollow">http://aws.amazon.com/sqs/</a>. </p>
<p>A quick search didn't turn up any django pluggables that look like accepted standards. </p>
<p>A quick and dirty way to emulate the functionality is to place the 'message' in a database table, and have a cron job periodically check the table to perform the work.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081708#1081708-1Answer by orokusaki for How do you do something after you render the view? (Django)orokusaki2009-07-04T07:05:25Z2009-07-04T07:05:25Z<p>One thing you could do is use middleware to do this.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081766#10817661Answer by ars for How do you do something after you render the view? (Django)ars2009-07-04T07:57:28Z2009-07-04T07:57:28Z<p>Django's HttpResponse object accepts an iterator in its constructor:</p>
<p><a href="http://docs.djangoproject.com/en/dev/ref/request-response/#passing-iterators" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/request-response/#passing-iterators</a></p>
<p>So you could do something like:</p>
<pre><code>def myiter():
yield "my content"
enqueue_some_task()
return
def myview(request):
return HttpResponse(myiter())
</code></pre>
<p>The normal use of an iterator is to send large data without reading it all into memory. For example, read chunks from a file and yield appropriately. I've never used it in this way, but it seems like it should work.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081935#10819352Answer by Lennart Regebro for How do you do something after you render the view? (Django)Lennart Regebro2009-07-04T10:16:44Z2009-07-04T10:16:44Z<p>My favourite solution: A separate process that handles background tasks, typically things like indexing and sending notification mails etc. And then, during the view rendering, you send an event to the event handling system (I don't know if Django has one built in, but you always need one anyway so you should have one) and the even system then puts a message in a message queue (which is trivial to write unless you have multiple machines or multiple background processes) that does the task in question.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1082785#10827850Answer by Alexander Ljungberg for How do you do something after you render the view? (Django)Alexander Ljungberg2009-07-04T18:55:11Z2009-07-04T18:55:11Z<p>You spawn a separate thread and have it do the action.</p>
<pre><code>t = threading.Thread(target=do_my_action, args=[my_argument])
# We want the program to wait on this thread before shutting down.
t.setDaemon(False)
t.start()
</code></pre>
<p>This will cause 'do_my_action(my_argument)' to be executed in a second thread which will keep working even after you send your Django response and terminate the initial thread. For example it could send an email without delaying the response.</p>
http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1082905#10829050Answer by codeape for How do you do something after you render the view? (Django)codeape2009-07-04T20:16:58Z2009-07-04T20:16:58Z<p>Perhaps I do not understand your question. But why not something simple like:</p>
<pre><code>try:
return render_to_response()
finally:
do_what_needs_to_be_done()
</code></pre>