Performance: Lambda vs Function Stack?

Options

Is there any performance difference between a lamdba and the function stack? All things being equal is there any difference between the two?

Tagged:

Comments

  • Michael Udinski
    Michael Udinski Administrator

    ADMIN

    Options

    It depends :) - although for more intensive logic, like looping through a large list, we have seen Lambdas be more efficient in some instances

  • Pawel Magdanski
    Pawel Magdanski Member ✭✭✭
    Options

    In terms of data transformations and as Micheal mentioned loop, I saw significant performance results using lambdas in many cases.