I believe C# has come up with some new concurrency based libraries, but how does it compare to Java?
Could you build something like Cassandra in C#?
|
I believe C# has come up with some new concurrency based libraries, but how does it compare to Java? Could you build something like Cassandra in C#? |
|||
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
C# has more built-in support on both in low-level (e.g. memorybarier) and high-level (e.g. TPL) concurrency constructs compared to Java. So you can build everything in C# as you can in Java. The only thing C# lacks compared to Java is proper documentation on the actual semantics of those constructs. |
|||||||||||
|
InterruptedExceptionall over. And you should be explicit about which new concurrency libraries you're talking about: the TPL (which is not new anymore)? Or theasync/awaitstuff that is coming? – R. Martinho Fernandes Jun 18 '11 at 18:51