I need to call a MySQL stored procedure from Python, and I don't need to wait for the procedure to finish.
How can this be done?
I need to call a MySQL stored procedure from Python, and I don't need to wait for the procedure to finish.
How can this be done?
Manuel Carrero
On
One possible solution is by using celery: "Celery is an asynchronous task queue/job queue based on distributed message passing.". You can create a task where you call your MySQL store procedure.
Copyright © 2021 Jogjafile Inc.
code below work for me