Hi ,
i want to distribute the work of one into 5 computers ,so as to reduce the processing time....
pls, sugesst
and provide the info about api's with which i can do the same job..
thanks
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi ,
i want to distribute the work of one into 5 computers ,so as to reduce the processing time....
pls, sugesst
and provide the info about api's with which i can do the same job..
thanks
can anybody help me to out of this....
There are quite possibly dozens of ways to go about this - presuming your 'work' can be multi-threaded. One low level way is to multithread the job and dispatch using Sockets
Lesson: Sockets
Lesson: Concurrency (The Java™ Tutorials > Essential Classes)
Another is to use servers, or Hadoop, or any number of other possibilities each powerful in its own way and each dependent upon the work in question, which you've given no information about
thanx for help,
I want to multiply two matrix's and each one is of size 1500 by 1500. it consume 91 seconds for computation but i have to finish it on 10 seconds...
pls , suggest..