- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Why field variables are much slower then local variables in JIT compilers?
Sun, 2011-09-11, 15:54
Hi all,
from my experience with ScalaLab, I observed that when I wrap
computational code within a method of a synthetic Scala object it is
executed much faster (i.e. 10 to 60 times faster) than when the same
code runs as a Scala script.
This obviously has its reason with the implementation of variables in
script with field variables in Scala Interpreter code.
It is of course necessary in order to keep the binding of the variables
to their values in the synthetically created interpreter "global"
workspace,
but can somebody explain why so much speed difference in favor of local
vars?
Regards
Stergios