Re: Can I implement Parallel processing in Java without using Threads?
Posted By:
Simon_Ablett
Posted On:
Friday, June 3, 2005 06:07 AM
You need to use Threads or have a second heavyweight process (i.e. application) running which queries the database and caches the results before passing the data to your application when it is ready. Threading would propbably be more efficient.
Regards