Gabriel Kliot

Results 20 comments of Gabriel Kliot

We can definitely do that. It is a bit quiet here now in US with all the holiday. We can set this to the beginning of January. What types of...

Sounds great. We will coordinate with Sergey and update everyone. Gabi

https://orleans.codeplex.com/discussions/640457 https://orleans.codeplex.com/discussions/579812 https://github.com/dotnet/orleans/issues/101 https://orleans.codeplex.com/discussions/578605 https://orleans.codeplex.com/discussions/572542

@BenjaminGibbs I loved how you built distributed scalable indices with grains! Of course, it is always better that the platform takes care of everything. We would all like super scalable...

Sounds like a good first step might be to build a storage provider that will map every field on grain `State` to a separate column. If we use [Azure Document...

That's a good point. No, not currently. The grain can of course check the memory perf counter itself, but it probably would be more useful if the framework provided this...

@veikkoeeva , we already have a way to plug in such a mechanism. It is called placement directors. They are currently not dynamically injectable, one has to write them inside...

OK, so to make it more clear: if one is using `await task.ConfigureAwait(false)`, the next line will run outside the context. But that applies only in that async level/scope. If...

Great question! Indeed, offloading too much to Thread Pool will result in using too much of Thread Pool threads, and this will lead to decreased throughput due to increased context...

Sure, I will add a comment there about using configureAwait(false) in libraries.