Lets say I have a file on a server with cache-headers indicating it should be cached. Will the response of a HEAD request to that file be cached as well?
Will an HTTP HEAD request ever be cached by phone / browser
1.5k Views Asked by Itai Hanski At
1
There are 1 best solutions below
Related Questions in HTTP
- My get request for http is very slow
- Angular multiple http requests chrome android
- HttpRequestContext vs HttpContext
- Converting curl command to iOS
- getting google contacts using shuttlecloud
- Node.js http.get example
- How can hide url value in php
- Symfony2 - handle HTTP/Entity user access restrictions
- Angular http interceptor responseError doesn't have statusText
- Which of the following hostnames are valid?
- Send Http request at specific time
- Rails - read file from POST request / octet-stream
- Python - Cookies & BeautifulSoup
- Npm requests stopped by home router
- POST Android json data
Related Questions in CACHING
- ClassCastException: datastructures.instances.JClass cannot be cast to java.util.ArrayList
- Robospice. How to save data and how to get data from DB?
- Make @lru_cache ignore some of the function arguments
- Xib taking long time (>1s) to load. UIFont cache seems to blame
- Android picasso cache images
- Rails 4 low-level caching not working
- How to cache Exchange web service API autodiscoverurl?
- The process cannot access the file because it is being used by another process asp.net
- Alamofire loading from cache even when cache policy set to ReloadIgnoringLocalAndRemoteCacheData
- Java Heap vs Cache
- In what use cases is locking on ASP.NET cache required/desirable
- Chrome cache overriding angularjs disabling of cache
- AFNetworking 2.0 Cache Issue
- Symfony ESI Cache / Surrogate Listener Issue
- Using getOrElseUpdate of TrieMap in Scala
Related Questions in HTTP-HEADERS
- Disable Expect: 100 Continue in Play
- Data in mysql is set to 0 when send a POST using network tab, codeigniter
- Create HTTP GET Header Request
- write a parsed response from a json file in a div
- Adding HTTP Header to AJAX get request
- Play Framework: How to Add a Header to Every Response
- Can servers use http headers order to catch a browser signature?
- how use data like that to send request from windows phone
- CURL to POSTMAN
- How to get content from another website using JQ or JS
- Python, Flask: How to set response header for all responses
- Best practice for indicating a client side refresh/warning from server side
- Gather Client Domain from Rails API GET Request
- How to remove HTTP Server "Apache"?
- AngularJS header authorization format in Interceptor
Related Questions in BROWSER-CACHE
- Chrome cache overriding angularjs disabling of cache
- Cache PDF file in browser based on url
- Website html doesnt update for users because of cache
- Login issue in chrome browser
- Knockout js getting page(s) unresponsive error while using continuously
- Page cached tracking using javascript
- Couldn't load url with WebView : ERR_CACHE_MISS
- Caching in Webview is not working in Android
- Cache won't update
- How can I manage browser cache in PHP?
- Leverage browser caching issue with already cached content
- Where does the browser store user input data?
- Internet explorer delets the manifest.appcache file when offline
- Add UrlArgs to reuire-js main file
- How to Force WebBrowser Control to use New Session or clear sessions
Related Questions in HTTP-HEAD
- Unknown reason for Timeout on HTTP HEAD request
- Will an HTTP HEAD request ever be cached by phone / browser
- What is the difference between PING and HTTP HEAD?
- Making HTTP HEAD request with timeout in Ruby
- Should HEAD's response status code be the same as GET's status code?
- Validate curl CURLOPT_HTTPHEADER request on server side
- How to set the Content-Length header and it work in Cassini?
- Prevent duplicate HTTP requests for cachable responses
- Why would a server disallow HTTP HEAD?
- check if file exist in the same URL but not in local server
- Is it possible to make a HEAD request in puppeteer?
- Curl HEAD request returns a last-modified header but Node https.request(..., {method: HEAD},...) does not
- Unreliable HTTP status code when using the HEAD method
- HttpHead in ASP.NET Core
- HttpClient Head request argument always null
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?
It doesn't really make sense to cache the response to a
HEADrequest itself, as it contains no entity.