When is recommended to use the Data URI
Notice: This thread is very old.
- esorimer
- Member | 114
Hi,
my recommendation is use Data URL for data (images), which are shown only on one
or a few pages.
If an image is used rarely, its better not to force new request on the server, but let it download within the page.
If an image is used often, it better to download it separately, so the browser can cache it. It reduce the size of all pages with this image and the image is download only once.
But if the data is big, its always better not to put it into the page, because it slows down the page load time (and lowers google page rank etc.).