• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Performance of Applets

 
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I have huge applet that takes about 15 jars along with it during download. We need to improve the performance by reducing the download time. Can any one suggest means for faster download of applets ?
Rajesh
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Rajesh,
Ummm... why are multiple jars downloading? Why not put everything in one jar file? That would speed up the initial transfer by only making 1 request (as opposed to 15+ seperate requests you mentioned).
You may have a completely valid reason for this... if so, just ignore this post...
HTH,
-Nate
 
Author
Posts: 6055
8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There are a number of solutions out there to cache downloaded jars (check out GPL'ed PVCj http://www.granitepeaks.com:8011/pvcj/). I think recent versions of Java and/or web browsers may have even built in this functionality.

--Mark
hershey@vaultus.com
reply
    Bookmark Topic Watch Topic
  • New Topic