Changes between Version 81 and Version 82 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
11/02/12 04:43:25 (12 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

    v81 v82  
    5656|| x = Storage(a="abc") || x.a || x["a"] || 1.064 || 0.39 ||
    5757|| x = Storage() || x.a = "b" || x["a"] = "b" || 0.49 || 0.24 ||
    58 || row = s3db.pr_person[1] || row["first_name"] || row.first_name || 0.25 || 4.18 ||
     58|| row = !s3db.pr_person[1] || !row["first_name"] || row.first_name || 0.25 || 4.18 ||
    5959|| table = s3db.pr_person || "first_name" in table || hasattr(table, "first_name") || 0.74 || 0.42 ||
    6060|| table = s3db.pr_person || "first_name" in table || table.first_name || 0.74 || 0.27 ||