6.10.3. Discussion
When Perl compiles a program, it converts patterns into an internal
form. This conversion occurs at compile time for patterns without
variables, but at runtime for those that do. Interpolating variables
into patterns, as in /$pattern/, can slow your
program down—sometimes substantially. This is particularly
noticeable when $pattern changes often.
The /o modifier locks in the values from variables
interpolated into the pattern. That is, variables are interpolated
only once: the first time the match is run. Because Perl ignores any
later changes to those variables, make sure to use it only on
unchanging variables.
Using /o on patterns without interpolated
variables doesn't hurt, but it also doesn't help. The
/o modifier is also of no help when you have an
unknown number of regular expressions and need to check one or more
strings against all of these patterns, since you need to vary the
patterns' contents. Nor is it of any use when the interpolated
variable is a function argument, since each call to the function
gives the variable a new value.