Is there a best practice on using require() for every search in a script, performance wise ? :
require(['N/search'], function(SEARCH) {
// run my search
}
It does say it's usage may be better for performance, but doesnt clear the question of calling it multiple time, would that negate the performance ?