Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Storing state locally with Azure Functions

Does Azure Functions offer a local (state) storage to eliminate a need in invoking additional services such as storage, docDB, etc?

like image 340
Sean Feldman Avatar asked May 02 '16 01:05

Sean Feldman


2 Answers

Functions are built on Azure App Service, which offers the ability to store persistent files. e.g. you can store files under %HOME%\data\SomeFolderOfYourChoice.

like image 126
David Ebbo Avatar answered Sep 30 '22 13:09

David Ebbo


As was told, Azure Functions can interact with its folder structure and is able to store some stuffs into its folders. But, remember, Azure Functions are billed for resources consumption, that is even more resources your Functions will need, even more cost you'll have on your billing.

Sometimes is more cheap use Azure PaaS services than store stuffs into your Functions. This was a TIP ! :)

like image 36
Jose Roberto Araujo Avatar answered Sep 30 '22 15:09

Jose Roberto Araujo