Giter VIP home page Giter VIP logo

benchmarking's Introduction

Benchmarking List.Sort() vs OrderBy

base on the performance test summary sorting list using sort() is much faster than using Linq OrderBy(), to undestand what's happen i analyse the code source of Linq (thanks to microsoft, the net core is open source we can read the code from github) https://github.com/dotnet/corefx/blob/master/src/System.Linq/src/System/Linq/OrderBy.cs There is an overhead because Linq functions work on IEnumerable interface, so it can work on List, Array, or Collection implement IEnumerable (custom collection), so Orderby transform the list to Buffer

Orderby overhead

  • Create OrderedEnumerable
  • store the enumerable items into an array before sorting them O(n)
  • executing ToList()

Orderby still very usefull function, i recommend to use it in two case :

  • working with ORM like EF
  • if you want to implement generic library function that works on IEnumerable but in the simple case when you have an array or list of objects it better to use List.Sort() or Array.Sort().

benchmarking's People

Contributors

hamdichehdi avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.