79310320

Date: 2024-12-26 19:52:31
Score: 1.5
Natty:
Report link

According to Python Developer Reference for Azure Functions:

It isn't guaranteed that the state of your app will be preserved for future executions. However, the Azure Functions runtime often reuses the same process for multiple executions of the same app. To cache the results of an expensive computation, declare it as a global variable.

Therefore, global variables values may be reused for multiple Azure Function's executions, what explains the behavior described.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Leandro