1
I have a web system based on Django (Python). In this app I need to show some dynamic values coming from a remote device, in which I need to place some orders every 2 minutes to log the values in the database and generate some of these statistics as Average. Is there any way to run a process together with the server and log from time to time? Celery would be applied in this case?
See if that answer helping.
– Sidon
It depends a lot on the complexity of the project if you need to use many Celery tasks it would be more appropriate http://docs.celeryproject.org/en/latest/reference/celery.schedules.html
– Hawksec
how the remote device requests is coming ?
– Hawksec