in reply to Re^2: Does Perl do constant anonymous hash creation optimisation?
in thread Does Perl do constant anonymous hash creation optimisation?

Dear Monks,

Extending the cmpthese() example, I found no appreciable performance difference between:

use constant SKIPWORDS => {...}; our $SKIPWORDS = {};
So a big thumbs up for use constant()!

Thanks for the help!

Jeff