in reply to -w in production environment

I believe use strict catches mostly compile-time errors, and it does take time to run (and pull in the extra code.) If you are really pining for those extra few miliseconds, its probably "safe" to remove it from production code. However, i've found it to be more of a hassle than its worth..... I usually prefer to just leave the use strict in the production code.

-Blake