If I want to parse a text field in SSJS there are 2 main tools. The built in JavaScript code and the newly converted @Functions. Are the @Functions slower then using pure javascript? Or is there no real difference?
viewScope.put("length", tmpStr.length)
vs.
viewScope.put("length:, @Length(tmpStr))
For me it seems that the @Formula is not as fast as using SSJS-code.
You can easily test by yourself with some code like this one (reload page multiple times to get serious results):