PDA

View Full Version : Problem about size !


oleane
08-31-2004, 01:17 PM
This is my issue.

I use an html to encode the lsz source.
viewer application give me a gzip size : 171ko
But in my cache browser IE6 i find 528ko !!
I don't understand why.
see my html code :

<html>
<head>
<script xmlns="" src="../includes/embed.js" language="JavaScript" type="text/javascript">
</script>
<title>just a test</title>
</head>
<body bgcolor="#DDDDDD" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<script src="test001.lzx?lzt=js" language="JavaScript" type="text/javascript"></script>
</body>
</html>

is there a relation with the lps request type ?

antun
08-31-2004, 01:32 PM
The LPS makes use of GZip compression, which is a feature of the HTTP protocol. Your browser receives the 171k download, but stores the uncompressed 528k version in the cache.

-Antun

oleane
08-31-2004, 01:41 PM
Antun
Thank for your answer.