Alex Rice wrote: > I was just doing some transcript tests and I can't see a speed > difference between a handler with regular params vs by-reference > parameters. Am I a correct that @params aren't used for optimization?
The engine's so fast that I doubt the time needed to copy the var would be noticeable until you get to a chunk of data that's really, really large. But if you're optimizing for memory conservation it can be a big help for large params, since you only have one copy in memory with by-ref params. -- Richard Gaskin Fourth World Media Corporation Developer of WebMerge: Publish any database on any Web site ___________________________________________________________ [EMAIL PROTECTED] http://www.FourthWorld.com Tel: 323-225-3717 AIM: FourthWorldInc _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
