html - Is there performance difference in image source file than base64? -


i wondering if there performance difference between using pictures base64, compared using actual files, user has download on fly.

an image http url of own:

  • requires separate http request (which slow on http 1 fast on http 2)
  • can loaded in parallel resource references it
  • can cached doesn't need requested subsequence pages or reloads of initial page
  • probably requires fewer bytes transfer base64 equivalent

Comments

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

java - Vaadin 7 Pass Data Between Views -