I'm trying to find the most straight forward way to have a single persistent variable in and Azure function. The use case is as follows:
1) check a web site for a number (eg. 76);
2) If number if greater than current number (eg. 72) send an email to users for each new number (eg. 73, 74, 75, 76);
3) Run the above every hour.
What would be the best way to save the new number after the function runs?
Thank you, I appreciate any thoughts on best practices.
MW