Anybody can explain the difference between load and with functions?
Discussion posts and replies are publicly visible
It's simply not true to say that load() is faster than with() - they are extremely similar functions that satisfy slightly different requirements. Neither one is any faster than the other, but incorrect use of with() could cause your interface to perform poorly.
Use of load() and with() as part of an expression makes no difference at all as far as speed is concerned.