Storing state locally with Azure Functions

后端 未结 3 1245
春和景丽
春和景丽 2021-01-04 10:32

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

3条回答
  •  渐次进展
    2021-01-04 11:16

    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.

提交回复
热议问题