Admun's NUDN

admun

  • San Francisco, CA

Navigation

Navigation

Categories

More Benchmarking Nucleus

Building on top of existing benchmarking infrastructure, here I show how to count number of SQL queries a page generated.

  1. Add SQL query counter in benchmark_setup.txt
  2. global $SQLQCount;
    $SQLQCount = 0;
    
  3. Inclement the query counter in sql_query() (@nucleus/libs/globalfunctions.php)
    function sql_query($query) {
      global $SQLCount;
      $SQLCount++;
      $res = mysql_query($query) or print("mySQL error with query $query: " . mysql_error() 
             . '<p />');
      return $res;
    }
    
  4. Show the Count at the end after the page is processed (from benchmark.txt)
  5.   global $SQLCount;
      printf("%d SQL queries recorded<br />", $SQLCount);
    
    
Note, there are some limitation with this method; The total query count does not register those query by mysql_query directly. Actually, many plugins do this.... which need to be fixed. Also, the queries done by Nucleus is not take into account.

20:09:33 on 10/13/04 by Admun - Category: Developer Notes - tags: none - print

Comments

hcgtv wrote:

Nice, would love to see this as part of the main core system.

PS. The RSS feed links from the dev site are broken:
http://edmondhui.homeip.net...

10/13/04 23:46:47

Admun wrote:

yes... it missing a "/"///

10/14/04 09:06:13

Add Comments