i tried to set cacheControl value in azure CDN rules engine. request header is added with cacheControl value (cache-Control : max-age 3000), but when i reload my page, blob is not caching by disk cache and download blob everytime. is there have any other setting for blob disk cache? (blob's url is combine with SAS Token)
set blob disk cache on microsoft azure storage
1.4k Views Asked by J U At
1
There are 1 best solutions below
Related Questions in AZURE
- Why does Azure Auto-Scale scale go lower then minimum amount of instances?
- Data execution plan ended with error on DB restore
- Why does Azure CloudConfigurationManager.GetSetting return null
- Do I need other roles than Worker Role for a web site and service layer in Azure?
- Azure Web App PATH Variable Modification
- Azure Data Factory: LinkedService for AzureSql in failed state
- How To Update a Web Application In Azure and Keep The App Up the whole time
- Using Azure MobileServices library with my own LAN WebApi
- ionCube loader error on Azure IIS
- App crash (if closed) after click on notification
- How to get sql data bases instances in azure using java api
- I want to create file in azure share using python PUT requests but getting error signature not correct including headers
- Enabling OPTIONS method on Azure Cloud Service (to enable CORS)
- Redirecting subdomain to directory on Azure
- Kaltura account settings error
Related Questions in WEB
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- how to prepend www if the url string does not has www?
- @Value annotation not resolved in a class that belongs to dependency jar
- referral link isn't being locked to one ip
- Under what conditions does href="#" cause scrolling to the top of the page?
- Webpage - Font size of table items on mobile phone browsers changes
- Web Service Error path property must set before calling the send method
- Calling ASP webpage from C# application
- What is the best way to make two web pages communicate between each other back and forth?
- CSS Different screen resolution
- How can hide url value in php
- HTML Control Form with PHP - Errors
- How would I use an only for IE8 and not for any other browser
- Client side computation without exposing code?
- detecting a file downloaded in selenium java
Related Questions in BLOB
- Sending blob data via ajax
- Loading binary image data to an image fails on Android 4.1 in Cordova Project
- Why throwing java.lang.IndexOutOfBoundsException when reading blob in the database hsqldb
- I want to remove all BLOBs from a table - set to NULL or EMPTY_BLOB?
- Save File in javascript clientside using utf-8 string
- Blob createObjectURL download not working in Firefox (but works when debugging)
- A C cgi script to serve binary file from sqlite3_column_blob pointer
- How to get HTML <video> data as a blob in JS?
- OpenCV return keypoints coordinates and area from blob detection, Python
- Server side to upload file through jQuery Ajax
- "Access is Denied" when embedding file from blob URL in IE
- How to include the image from byte array with other content in codeigniter?
- Uploading file to MySQL blob field file_get_contents(): failed (from input type="file")
- CLOB value in out/return from plsql (invalid LOB locator specified: ORA-22275)
- In Oracle, how to select LOBs from remote database without copying to local tables?
Related Questions in AZURE-BLOB-STORAGE
- Cordova with Windows Azure Storage, if the access to my container is public, do I still need authentification?
- Is it possible to copy from a RA-GRS secondary using Start-AzureStorageBlobCopy?
- Azure Blob video is not streaming
- 409 Conflict when attempting to revert a Page Blob to a previous snapshot
- How big a factor is blob size on retrieval time in Azure Storage?
- Upload file to Azure Blob from HTML webpage (C#)?
- Excel file (azure blob) does not download in chrome
- Getting error 400 bad request when accessing Azure blob storage - all latest components
- Azure storage 'put block list' returns 400
- Windows Azure Website and static html in Blob storage
- how to check if there is data in an azure block blob
- Azure - is one 'block blob' seen as one file?
- How to call Azure Blob Storage using REST API with SAS
- Automatically delete Blob files in Azure based on a future date
- Browser crashes while downloading large size files
Related Questions in DISKCACHE
- ImageResizer and Diskcache still queries my IVirtualImageProvider each time
- Where should my Java desktop app cache its downloaded assets?
- How to exclude parameters when caching function calls with DiskCache and memoize?
- How to tell web-browser client to always check for latest version of website code
- Disk Caching in Volley is not working
- Same Etags for different users from different machines
- mod_cache_disk define max disk usage
- Prevent Chrome to cache JS file
- set blob disk cache on microsoft azure storage
- Volley out of memory error, weird allocation attempt
- How to inform user that cache is being used?
- UIWebView won't use disk caching for resoruces downloaded by loadHTMLString function
- IE 11 Temporary Internet Files Disk Space set to 0 and would not change
- Setting Disk Cache size in Selenium, while webscraping multiple websites?
- Do containers use the same OS disk cache?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To set blob cache on Microsoft Azure Storage (other than Azure CDN caching rules), please check the below methods:
Using Azure Storage Explorer
Open Azure Storage Explorer -> Select blob -> Select properties -> Go to cache control property -> Enter value as max-age=3000 -> Save.
Using Azure PowerShell
Use the
Get-AzStorageBlobcmdlet to get blob, then set the.ICloudBlob.Properties.CacheControlproperty to "max-age=3000".Using Azure CLI
In Azure CLI while uploading a blob, set the cacheControl property by using the
-pswitch like below.For more in detail, please refer this link.
Note :
Please check these references if they are helpful:
Ref1, Ref2.