afscrome / IronVelocity

A wrapper around NVelocity (a port of Apache Velocity) using the DLR to provide higher performance template execution.
MIT License
6 stars 1 forks source link

Slotted Variables #2

Open afscrome opened 9 years ago

afscrome commented 9 years ago

Investigate whether we can store local variables using a slotted array. This would improve the performance of retrieving variables to a single array lookup rather than having to do a a dictionary lookup by key.

afscrome commented 9 years ago

IRuntimeVariables may be worth looking at. Need to consider careful how to handle this in nested contexts.