Show
Ignore:
Timestamp:
11/23/2007 05:10:56 PM (12 months ago)
Author:
Shadowhand
Message:

More changes to core:

  • Added a kohana_loading benchmark, for timing loading the core files
  • Split controller_execution benchmark into controller_setup and controller_execution
  • Created a new core config option, enable_utf8, to enable utf8 support to be turned off
  • Modified other core libraries and helpers to be aware of utf8 being disabled
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/core/Benchmark.php

    r1230 r1250  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
     3 * Kohana 
     4 * 
     5 * copyright - (c) 2007 Kohana Team 
     6 * license   - <http://kohanaphp.com/license.html> 
     7 * revision  - $Id$ 
     8 */ 
     9 
     10/** 
    311 * Simple benchmarking. 
    4  * 
    5  * Kohana Source Code: 
    6  *  author    - Kohana Team 
    7  *  copyright - (c) 2007 Kohana Team 
    8  *  license   - <http://kohanaphp.com/license.html> 
    912 */ 
    1013final class Benchmark {