You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Pavel Tupitsyn (JIRA)" <ji...@apache.org> on 2016/10/20 09:52:58 UTC

[jira] [Created] (IGNITE-4099) .NET: Review method group usage (micro-optimization)

Pavel Tupitsyn created IGNITE-4099:
--------------------------------------

             Summary: .NET: Review method group usage (micro-optimization)
                 Key: IGNITE-4099
                 URL: https://issues.apache.org/jira/browse/IGNITE-4099
             Project: Ignite
          Issue Type: Improvement
          Components: platforms
            Reporter: Pavel Tupitsyn
             Fix For: 1.8


There are a bunch of places where we use method group delegates, including hot paths in serialization/deserialization.

Method group syntax is more concise, but causes extra allocations and worse performance: http://vibrantcode.com/2013/02/19/lambdas-vs-method-groups/

Lambda syntax is more efficient. Static lambdas are cached, do not cause allocations, and perform on par with regular methods.

The fact that R# suggests replacing lambdas with method groups does not  help. We should disable this in team-shared dotsettings file.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)