Re: Specific models without a database table

2011-08-20 Thread sedl...@gmail.com
Hi, you may use custom model manager (responsible for retrieving objects from DB) and custom save method (which would not call Model.save), together with managed=True. You may still face some issues, however I think this should be possible. Cheers, Filip On 20 srp, 12:51, Malcolm Box wrote: > O

Re: Run an application periodically on django

2011-08-05 Thread sedl...@gmail.com
Hi, just one thought - if the update is not much time-consuming, you can write your view which allways parses the data and then cache the view for 30 seconds. That way if nobody looks at your page, you won't do useless work in the background. See https://docs.djangoproject.com/en/dev/topics/cache/