• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Distributed Programing Question

AFB

Lifer
For fun, I just want to make a DC program in Java to do some prime number searching using my own message passing . Now the questions 🙂 :


  • Redundancy and Storage, how do I store the results and makes sure that the work given out to one client isn't done twice for no reason, but is redone if a client doesn't send the work back.

  • I was assuming it would be best to use UDP if it sent the results back as soon as it was done, or TCP if it implemented caching. It just needs to allow me to send a serialized Java class as byte data.

  • Best DC program to run? I would prefer if it didn't start as soon as I start my computer since I like it's fast start time.

Thanks 🙂
 
Originally posted by: amdfanboy

Best DC program to run? I would prefer if it didn't start as soon as I start my computer since I like it's fast start time.

Pick one which interests you. Start up should not be affected as they run at low priority.
 
Back
Top