vote up 1 vote down star

When I run the following task for Ant project from Eclipse 3.4:

<jar destfile="test.war" level="9">
    ...
</jar>

seems like compression level has no effect. It says that compression level is supported starting from ant 1.7 and in the Manifest.mf it says I have 1.7.0

Ant-Version: Apache Ant 1.7.0

Any ideas?

Thanks.

UPDATE: Actually it is compressing, I just didn't notice it. Compression level 9 gives 1Kb advantage in size over default for 650kb war, which makes it pretty much worthless. This is strange because using winzip I can get 450kb file using "normal" compression level and 400kb using "maximum".

UPDATE2: My bad, I was compressing sources instead of classes. Maximum compression level in winzip doesn't give any advantages in size either. I probably should go to sleep already :)

Sorry for false alarm, you can delete/close this.

flag

51% accept rate
have a good sleep :-) – TofuBeer Mar 3 at 7:13
Closing as no longer relevant (PEBCAK :-) – paxdiablo Mar 3 at 7:36

1 Answer

vote up 1 vote down

Do you have compress="true" in there too?

Also, you may really want to think about not compressing the file. If it is compressed it cannot be opened as a memory mapped file. If it is a memory mapped file it is significantly faster to access.

It is up to the VM to decide if it will open it is a memory mapped file or not (so it is not a guarantee that it will be faster, but it is a guarantee that it can not ever do it if it is compressed).

link|flag
I added compress="true", it didn't help (it should be compressed by default anyway). This war is deployed on tomcat and it is uncompressed during deployment anyway (as far as I understand). – serg555 Mar 3 at 6:50
Yes it would be uncompresses for that situation. – TofuBeer Mar 3 at 6:58
Turns out it was compressing after all (I updated first post). Thanks. – serg555 Mar 3 at 7:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.