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
Printable View
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..