Question: What sort of overhead is involved in using the call("xxx.efs") function to get my values. For example, my code looks like this:
function main()
{
var vValue1 = call("SlowFFF.efs");
var vValue2 = call("FastFFF.efs");
return Array(vValue1, vValue2);
}
Am I facing any performance issues here?
Thanks
Guy
function main()
{
var vValue1 = call("SlowFFF.efs");
var vValue2 = call("FastFFF.efs");
return Array(vValue1, vValue2);
}
Am I facing any performance issues here?
Thanks
Guy
Comment