run django microservice with while loop?
up vote
1
down vote
favorite
I have a django app running as a microservice. Which has a function which does the following:
- Checks for filenames matching *.json in a directory.
- for each file:
- processes json data and converts to xml.
- saves xml in target directory.
- Exits function.
Is there any reason i shouldn't do this to keep it running on a cycle:
While True:
main_function()
The previous developer was using threading which i think is making things far too complicated given there's no need to optimise performance.
python django while-loop microservices
add a comment |
up vote
1
down vote
favorite
I have a django app running as a microservice. Which has a function which does the following:
- Checks for filenames matching *.json in a directory.
- for each file:
- processes json data and converts to xml.
- saves xml in target directory.
- Exits function.
Is there any reason i shouldn't do this to keep it running on a cycle:
While True:
main_function()
The previous developer was using threading which i think is making things far too complicated given there's no need to optimise performance.
python django while-loop microservices
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a django app running as a microservice. Which has a function which does the following:
- Checks for filenames matching *.json in a directory.
- for each file:
- processes json data and converts to xml.
- saves xml in target directory.
- Exits function.
Is there any reason i shouldn't do this to keep it running on a cycle:
While True:
main_function()
The previous developer was using threading which i think is making things far too complicated given there's no need to optimise performance.
python django while-loop microservices
I have a django app running as a microservice. Which has a function which does the following:
- Checks for filenames matching *.json in a directory.
- for each file:
- processes json data and converts to xml.
- saves xml in target directory.
- Exits function.
Is there any reason i shouldn't do this to keep it running on a cycle:
While True:
main_function()
The previous developer was using threading which i think is making things far too complicated given there's no need to optimise performance.
python django while-loop microservices
python django while-loop microservices
edited Nov 11 at 22:31
asked Nov 10 at 14:44
Tommy Gaboreau
160112
160112
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240057%2frun-django-microservice-with-while-loop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown