PonasNiekas wrote:

> I'm about to write an app, which is going to do long running (~1 to
> ~60 minutes) calculations (meanwhile, the user who triggered the
> calculation will get message like "calculation in progress" or smth).
>
> I'm wondering what is the right place or best practice to do such
> calculations, custom middleware or view ?

How are you going to fit long-lasting calculations in «request/response»
model at all?

I'd perform calculations separately, using Django to provide user views
to launch calculation, see its progress and obtain results. However, a
program which will actually do the job might make use of Django's DB
interface to get a list of tasks to perform, store calculation progress
and results in your database so you could access it from you Django
application.
-- 
Happy Hacking.

http://sphinx.net.ru
む


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to