What's better for performance / execution time? To...
# suitescript
g
What's better for performance / execution time? To have more information in a single search and iterate through it as per needed via JavaScript? Or to split out those searches so there's less iterating / mapping etc with JavaScript?
b
1 big search is better than a bunch of smaller ones
usually governance points is a good measure of performance cost, so minimizing governance is the path to a performant script
g
Thank you! And great point!