vote up 1 vote down star

I was thinking of making settings.py start the process but this seemed slightly ugly.

I don't really want to make make custom start up scripts, nor can I really make the starting of this process lazy.

flag

17% accept rate
The reasons are a little convoluted :). I need to use some libraries from IronPython but invoking ironpython syncrhonously is too slow due to start up times - thus a service is used - something needs to start this service. Of course it would be better if this were all in python... – tat.wright Feb 12 at 23:32
The reason lazy loading is not possible is that this is for a webservice which expected response within a given time frame, and will send duplicate requests otherwise. At the moment I've decided to just use lazy loading and have the first request fail – tat.wright Feb 12 at 23:34
And yes - hosting the service entirely in IronPython would probably be a good option if it could be done. – tat.wright Feb 12 at 23:37
So recoding in C# it is then... – tat.wright Feb 13 at 13:05
The title of the question doesn't make sense. Is there a typo? – akaihola Feb 14 at 12:01
show 2 more comments

1 Answer

vote up 2 vote down

You might be able to register a listener to the "class-prepared" signal on one of your model classes and fire your process from there. However, I think the need to do this is most likely a design smell, or a case of the tail wagging the dog.

http://docs.djangoproject.com/en/dev/ref/signals/#class-prepared

I'd be curious to know why your design calls for this, but that may get us off-topic here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.