We have a server which is written in Sanic async/Python.
I want to add a app.ctx variable, but this variable would be modified by an API called parse. This parse API supports concurrent calls.
Perhaps every parse API call will add value/remove value to this variable, and these API would share some information by this variable.
I want to make sure this variable is fiber/aysnc function safe. How does Sanic support this thinking?