Hi everybody,
As you may know, I have been crying about performance for a while.
I just found one line of code that [if eliminated] reduces my execution time in half [by more than .2ms] and I want to share it with others that may have similar problem.
var CurrentTime = getHours()*100+getMinutes;
Just one line, hard to believe this function [which I had forever] has such a great impact on execution time. But if it is true, maybe it is worthwhile publishing a list with overheads introduced by various function. It would save a lot of aggravation to many of us.
In the same idea, please be aware of the following performance impact: for whatever reason, for some functions, if you not specify BarIndex [like close() instead of close(0)] it may impact the execution time.
Moreover, some functions may even give strange behaviour of your efs. Don't remember which ones [I had a thread about this].
Mihai Buta
As you may know, I have been crying about performance for a while.
I just found one line of code that [if eliminated] reduces my execution time in half [by more than .2ms] and I want to share it with others that may have similar problem.
var CurrentTime = getHours()*100+getMinutes;
Just one line, hard to believe this function [which I had forever] has such a great impact on execution time. But if it is true, maybe it is worthwhile publishing a list with overheads introduced by various function. It would save a lot of aggravation to many of us.
In the same idea, please be aware of the following performance impact: for whatever reason, for some functions, if you not specify BarIndex [like close() instead of close(0)] it may impact the execution time.
Moreover, some functions may even give strange behaviour of your efs. Don't remember which ones [I had a thread about this].
Mihai Buta
Comment