Changes between Version 15 and Version 16 of DeveloperGuidelines/Optimisation
- Timestamp:
- 11/16/09 22:48:39 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v15 v16 12 12 13 13 === Specific Examples === 14 NB These vary on cases, so use the Profiler to see how they work in your cases... 14 15 {{{ 15 16 for i in range(0, len(rows)): … … 20 21 for row in rows: 21 22 }}} 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). 23 24 ---- 24 25 {{{