Changes between Version 15 and Version 16 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
11/16/09 22:48:39 (15 years ago)
Author:
Fran Boon
Comment:

use the Profiler to see how they work in your cases...

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

    v15 v16  
    1212
    1313=== Specific Examples ===
     14NB These vary on cases, so use the Profiler to see how they work in your cases...
    1415{{{
    1516for i in range(0, len(rows)):
     
    2021 for row in rows:
    2122}}}
    22 (0.05 vs. 0.001 seconds in a test case).
     23(0.05 vs. 0.001 seconds in one test case, 2x improvement in another & a slight negative improvement in a 3rd).
    2324----
    2425{{{