I was wandering. Say I've got a big one-page website. Say it has at some point, a very big image. I'd like the browser to give it some kind of download priority. In this case, is it good to use Link prefetching? Or, should I use Link prefetching only for resources belonging to other documents/pages?
It it good to use Link prefetching on resources belonging to the same document?
79 Views Asked by Luca Reghellin At
1
There are 1 best solutions below
Related Questions in HTML
- Delay in loading Html Page(WebView) from assets folder in real android device
- Why does a function show up as not defined
- CSS Class is not applying to element (border width,color,and style attributes)
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- Automatically closing tags in form input?
- Positioning child at bottom of parent with scroll
- Remove added set of rows
- Website zoomed out on Android default browser
- Twitter Bootstrap horizontal form elements on a line
- http://sigmajs.org/ les mis tutorial - why are my canvases 0 height?
- My navbar is not expanding after collapse
- when a checkbox is checked how to display a different hidden element using javascript
- Gaps Vertically Using Dividers
- Svg containers not positioning properly
Related Questions in PERFORMANCE
- Slow performance on ipad erasing image
- Can Apache Ant be told to cache its XML files?
- What are the pros and cons of the picture element?
- DB candidate as CouchDB/Schema replacement
- python member str performance too slow
- Split a large query (2 days) into pieces to increase the speed in Postgres
- Use GUI displayed results of SQL query vs new queries?
- fastest way to map a large number of longs
- Bash regular expression execution hangs on long expressions
- Why is calling a function so slow in Javascript?
- Performance of element-compare in java collections
- "Capture GPU Frame" in XCode -- iOS only?
- Efficiency penalty of initializing a struct/class within a loop
- Change the rotating speed of the circle when the mouse moves using javascript
- Replace foreach to make loop into queryable
Related Questions in PRELOAD
- Preload images that will be drawn on fabric.js canvas
- Preload image for seamless background image change in JavaScript
- Preloading data from network in UITableView
- object.onload fails with IE and Edge
- How to use popen() in a shared library?
- Link stylesheet preload vs W3C validation
- Jquery Preload content In Fancybox 2
- Replace std::sort with boost::sort
- Don´t preload images in XML (google maps API v3)
- preloading images in a css3 background slideshow
- How to Auto Call My Method In Time Period Without Running any WebPage in my application in ASP.net C#?
- ASP.NET MVC 3 Precompile
- How to preload iframe
- Preloading images with Prototype/Scriptaculous
- Rails: any way to preload (include) parent association
Related Questions in PREFETCH
- Prefetching a member variable of an object, accessed via function call
- OCI Prefetch not working
- Chrome's prefetching reloads desktop notifications
- SDWebImage - SDWebImagePrefetcher not using transformDownloadedImage
- link rel="prefetch" in Firefox network panel?
- set prefetch limit from stomp API
- Chrome: disable pre-render of hash change
- is there a way that i can tell if firefox is prefetching?
- How to join 4 or 5 tables in Django
- When should we use prefetch?
- Container_of() not compiling
- Django QuerySet cache not set when using prefetch_related on reverse foreign key objects in query
- typeahead.js prefetch problems
- Filter queryset by date on prefetch_related
- How to delete Prefetch folder in vb.net?
Related Questions in LINK-PREFETCH
- link prefetch not working properly, script is fetched again on navigation
- Do web based email clients (e.g., Gmail) respect link prefetch?
- trying to create dynamic og tags using server side rendering to generate link card preview (#linkedin)
- Including prefetch link in the body instead of the header
- It it good to use Link prefetching on resources belonging to the same document?
- Should you use next/link (prefetched client side transitions) for pages with any dynamic content?
- Does HTML prefetch cascade?
- How does Google Keep fetch link preview?
- Force Gatsby to prefetch linked page
- Does link prefetching work across subdomains?
- Vue PWA Precache manifest versus HTML prefetch link
- Link Perview for different routes in angular
- How to Preload Images without Javascript?
- How to prefetch external HTML pages in safari?
- <LINK> Prerender a url with query Params - Doesnt cache correctly - NextJS13
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?
You should use preload to fetch resources on high-priority if they are needed for current navigation. prefetch is for resources that may be needed for future navigation.
Keep in mind that preload is a declarative fetch - so the browser is forced to make the resource request. Prefetch is a hint - the browser may or may not load the resource stated for prefetch.