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)
Related Questions in AZURE
- How to update to the latest external Git in Azure Web App?
- I need an azure product that executes my intensive ffmpeg command then dies, and i only get charged for the delta. Any Tips?
- Inject AsyncCollector into a service
- mutual tls authentication between app service and function app
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Application settings for production deployment slot in Azure App Services
- Encountered an error (ServiceUnavailable) from host runtime on Azure Function App
- Implementing Incremental consent when using both application and delegated permissions
- Invalid format for email address in WordPress on Azure app service
- Producer Batching Service Bus Vs Kafka
- Integrating Angular External IP with ClusterIP of .NET microservices on AKS
- Difficulty creating a data pipeline with Fabric Datafactory using REST
- Azure Batch for Excel VBA
- How to authenticate only Local and Guest users in Azure AD B2C and add custom claims in token?
- Azure Scale Sets and Parallel Jobs
Related Questions in WEB
- Settlement Amount of Razorpay Dashboard is not correct
- How can I implement synchronous registration on a website and a forum by linking their databases?
- NextJS 13+ how to use parallel + intercepting routes to create a modal on a page which also stores/syncs state with search params?
- logo image error nextjs notion starter kit with teamspace
- how do i create slider on Wix website builder?
- Why do I get 500 error on Azure after using ViewBag?
- After pg-related pop-up calls and processing, the web application JSESSION is broken
- How can i upload image on Laravel React App
- React Routing in web development using an index template
- Why is my time filter not updating within my Quasar template?
- Why do I have a 403 error when trying to save a website
- Hadoop MiniCluster Web UI
- How to debug flutter web app to check maximum memory consumption issue?
- How to send a HTTP Cookie using the Set-Cookie header over a HTTP connection?
- Is it posible to modify packets that creats by request python module?
Related Questions in BLOB
- Out of memory while adding documents to a Firebird BLOB field with Delphi
- Data migration from Oracle Database Clob to GCP Bucket
- want stand logic app or function app (not premium) to connect to a blob storage which is under a vnet. How to achieve this?
- Is it possible to open a blob without saving it to file
- How do I add various document types to a Firebird BLOB field with Delphi
- Embedded pdf-file to blob with Python Selenium
- Sending an image (png) from my back (Java spring) to the front (react) and printing it
- SQLite query not returning expected results despite correct hashing and comparison in Android application
- display image in react as png/jpg went wrong
- Undeleting an Azure Blob Using a REST API Call from PowerShell
- How to pass multer file data into LangChain.js WebPDFLoader correctly?
- React-native 'name is null' when playing Sound from a fetched file
- Logic app blob trigger retry policy not working for 503 error
- What is the Right way to pass credentials to python libraries like adls-fsspec?
- Broken uploaded images in Vercel Blob via Express JS
Related Questions in AZURE-BLOB-STORAGE
- Azure Storage Account Access: Role Assignments Yield 'Access Denied' even for "Blob Owners" roles
- Getting "Incorrect padding" error when trying to retrieve the list of blob names
- Get all file from blob directory timeout 400 error when having large number of file
- Adding users file storage feature to my application
- azure-sdk-for-rust: How to get the Content-MD5 for a file?
- Azure storage blobs, Download file and check integrity
- Unhandled host error occurs after function execution
- Azure Storage Copy Blob From Url (REST API) error on x-ms-requires-sync header
- New Azure Function App processes blobs that were already processed by another Function App
- Unknown characters while reading PDF file from Azure Blobl Storage
- Transfer files to Azure Blob Storage
- "Directory is expected, not a file." error when using Azure CLI to download from blob storage
- Nothing read from Azure Blob storage after downloading file in stream data
- How to get the sizes of different Azure Blob Container inside Azure Storage Account on Grafana
- SAS token for azure storage container failed 403 error
Related Questions in DISKCACHE
- How do i set multiple key values into diskcache in single insert?
- Jetpack Compose progress indicator
- How do I rename a Diskcache memoization cache?
- mypy showing error "Untyped decorator makes function untyped" when using diskcache.Cache.memoize decorator on a typed function
- Cache large numpy array (or other arrays) into disk to save RAM memory
- set blob disk cache on microsoft azure storage
- How to exclude parameters when caching function calls with DiskCache and memoize?
- How to inform user that cache is being used?
- Where should my Java desktop app cache its downloaded assets?
- How to tell web-browser client to always check for latest version of website code
- Prevent Chrome to cache JS file
- Is it safe for two threads to write identical content to the same file?
- How to get all elements by tag?
- Setting Disk Cache size in Selenium, while webscraping multiple websites?
- AVPlayer not starting until cell is recycled
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?
Popular Tags
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)
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.