image related thing in website

N

Navu

hi all

i m using a lot of small images in my website.
Right now they take a lot of time to get downloaded all the images
becoz of HTTP request for all the seperate images.
Pls suggest me some way by using which all the images can be merged in
to one file and then all get downloaded at the client site in one HTTP
request.
Thanx
 
T

Thomas 'PointedEars' Lahn

Navu said:
Pls suggest me some way by using which all the images can be
merged in to one file and then all get downloaded at the client
site in one HTTP request.

You can use multipart HTTP responses or any compact/compression
algorithm to serve the data of all images in one request, and you
can use the corresponding extract/decompression algorithm to
decompress the response body. However, there is no interoperable
means to display the extracted/decompressed data; `data:' URIs do
not work everywhere, and otherwise required host objects are not
always available.

You can only speed up the process reliably if your server allows
for (more) parallel connections from a client; preloading in
different ways is possible, but not reliable.


PointedEars
 
T

Thomas 'PointedEars' Lahn

Thomas said:
You can only speed up the process reliably if your server allows
for (more) parallel connections from a client; preloading in
different ways is possible, but not reliable.

Where it should be added that you can serve _one_ resource in _one_
request gzip-compressed if the client supports that (watch for the
"Accept-Encoding: gzip" header) which also further speeds up the
download process. See also <URL:http://www.mnot.net/cache_docs/>
which refers to the cgi_buffer library.



PointedEars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,596
Members
45,139
Latest member
JamaalCald
Top