Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Learning more about distributed computing [closed]

I'm interested in learning more about distributed computing and how to do it - mostly in C++ but I'd be interested in C# as well.

Can someone please recommend some resources? I know very little to nothing about the topic so where should I start?

Thanks.

like image 367
CCicotta Avatar asked Jun 29 '09 13:06

CCicotta


3 Answers

Distributed computing encompasses quite a lot of areas. Is there a specific class of problem you are looking to solve?

If you are just starting off you might want to do some background reading before getting into language specifics. You could start from Wikipedia. The paper on the Fallacies of Distributed Computing is quite well known and would give an interesting read.

like image 103
Mark Avatar answered Oct 30 '22 17:10

Mark


Distributed computing in C++ is often done with CORBA. If you are interested in learning CORBA, maybe you can start here

like image 3
Nemanja Trifunovic Avatar answered Oct 30 '22 16:10

Nemanja Trifunovic


For C#, WCF all the way :-)
http://msdn.microsoft.com/en-us/netframework/aa663324.aspx

like image 2
Joel Martinez Avatar answered Oct 30 '22 17:10

Joel Martinez