Changes between Initial Version and Version 1 of Ticket #403

Show
Ignore:
Timestamp:
02/15/10 01:11:44 (16 years ago)
Author:
cfgrok
Comment:

Fixed in revision 283

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #403

    • Property status changed from new to closed
    • Property resolution changed from to fixed
  • Ticket #403 – description

    initial v1  
    11The boolean test used to detect whether event generation should occur in the !GenerationController is presently less efficient than it could be, as it is checking for the presence of the requested event in the loaded event-handlers structure before the check to see whether the generationEnabled config setting is set to true: 
    2  
    3 {{{ 
    42 
    53<cfif not getModelGlue().hasEventHandler(eventName) and getModelGlue().getConfigSetting("generationEnabled")> 
    64 
    7 }}} 
    8  
    95Inverting the order of this expression will slightly reduce the overhead on framework reload requests.