Search code examples
cachingazureazure-storageazure-web-app-servicetemporary

Temporary storage for Azure WebSites


I want to cache some cropped images and serve them without calculating them again in a Azure WebSite. When I used the Azure VM I was just storing them at the D drive (temporary drive) but I don't know where to store them now.

I could use the Path.GetTempPath but I am not sure if this is the best approach.

Can you suggest me where should I store my Temporary files when I am serving from a Azure WebSite?


Solution

  • You could store the processed content on Azure Blob Storage and serve the content from there.