ColdFusion non-scoped vs. VARIABLES scope: performance vs. readability?
问题 In my ColdFusion code, I have made it a habit to always treat the variables scope as my default scope (i.e., when another scope doesn't fit). My understanding is that this improves efficiency, since the ColdFusion processor doesn't have to spend cycles determining the scope in which the variable is contained. However, I've always been annoyed by how verbose this makes my code. So, my question is, realistically, is explicitly scoping every variable worth the verbosity? I understand that each