I've got a servlet to cache my data from several databases located all over the world. Some have fast lines, some slow. I initially had all of the data cached on start-up by setting the servlet to run in web.xml, but now some of the offices that have been added are taking 10 minutes plus to connect to. My question is, how do I automate the caching of my data after the appilcation itself has started, so that the application doesn't take forvever to come online, but that the data can be populated as the databases return their queries? I'd really appreciate any example code. Many thanks Andrew
A carrot is as close as a rabbit gets to a diamond.
shankar vembu
Ranch Hand
Joined: May 10, 2001
Posts: 309
posted
0
i guess, you can start a background thread in your init() method of the servlet. this will not stop your appl. from coming online. regards.
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
1
posted
0
1. Didn't you already post this question and get reasonable answers in some other forum? I seem to recall exactly this question. 2. Your name is not compatible with JavaRanch conventions - didn't you read the instructions when you signed up? Bill