Welcome Guest, Not a member yet? Register   Sign In
CI-based Web Sites Performance
#5

[eluser]tonanbarbarian[/eluser]
If you want to get some real performance data on your CI site turn on the profiler
in your controller put the following code
Code:
$this->output->enable_profiler(true);
This will display the execution time for CI, which is a better indication of speed than "it took less than a second to download" because download speed is subjective depending on your internet connection, the servers internet connection and the load on the server.

The profiler also shows all queries that were run, and the get and post variables, and in CI 1.6 it will show the memory used, if your PHP is complied with memory limiting enabled.

This gives you a good idea as to how well your site is running.
On modest hardware you should find your execution times way less than 1 seconds, in fact they may even be less than .1 seconds, but it all depends on what you are doing in code.

If you want even more information about what your site is doing add the following code to the end of your index.php file
Code:
echo '<pre>'.print_r(get_included_files(), true).'</pre>'
This will list out each of the files loaded. Ideally you want the number of files loaded to be as small as possible it you want the best performance. If coded properly then CI is good at this. So do not use autoload unless you really need it, instead tell CI to load things only as you need them, and do not worry about trying to load the same thing more than once, CI handles that correctly. If you do this you may find that your number of included files goes down, which should also improve memory and execution time.


Messages In This Thread
CI-based Web Sites Performance - by El Forum - 02-03-2008, 07:15 AM
CI-based Web Sites Performance - by El Forum - 02-03-2008, 11:22 AM
CI-based Web Sites Performance - by El Forum - 02-03-2008, 02:01 PM
CI-based Web Sites Performance - by El Forum - 02-03-2008, 03:09 PM
CI-based Web Sites Performance - by El Forum - 02-03-2008, 04:54 PM
CI-based Web Sites Performance - by El Forum - 02-03-2008, 06:23 PM
CI-based Web Sites Performance - by El Forum - 02-03-2008, 08:33 PM
CI-based Web Sites Performance - by El Forum - 02-03-2008, 10:27 PM
CI-based Web Sites Performance - by El Forum - 02-04-2008, 02:44 AM
CI-based Web Sites Performance - by El Forum - 02-04-2008, 03:42 AM
CI-based Web Sites Performance - by El Forum - 02-04-2008, 08:43 AM
CI-based Web Sites Performance - by El Forum - 02-04-2008, 04:19 PM
CI-based Web Sites Performance - by El Forum - 02-04-2008, 04:54 PM
CI-based Web Sites Performance - by El Forum - 02-04-2008, 06:42 PM
CI-based Web Sites Performance - by El Forum - 02-04-2008, 09:38 PM
CI-based Web Sites Performance - by El Forum - 02-09-2008, 06:10 AM
CI-based Web Sites Performance - by El Forum - 02-09-2008, 01:51 PM
CI-based Web Sites Performance - by El Forum - 02-09-2008, 02:11 PM
CI-based Web Sites Performance - by El Forum - 02-09-2008, 03:55 PM
CI-based Web Sites Performance - by El Forum - 02-09-2008, 04:28 PM
CI-based Web Sites Performance - by El Forum - 02-09-2008, 08:21 PM
CI-based Web Sites Performance - by El Forum - 02-10-2008, 06:41 AM
CI-based Web Sites Performance - by El Forum - 02-10-2008, 04:44 PM
CI-based Web Sites Performance - by El Forum - 02-10-2008, 10:10 PM
CI-based Web Sites Performance - by El Forum - 02-11-2008, 03:37 PM
CI-based Web Sites Performance - by El Forum - 02-12-2008, 09:16 AM
CI-based Web Sites Performance - by El Forum - 02-12-2008, 09:26 AM
CI-based Web Sites Performance - by El Forum - 02-12-2008, 10:02 AM
CI-based Web Sites Performance - by El Forum - 02-12-2008, 01:51 PM
CI-based Web Sites Performance - by El Forum - 02-12-2008, 02:01 PM
CI-based Web Sites Performance - by El Forum - 02-12-2008, 02:34 PM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 03:35 AM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 05:14 AM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 07:44 AM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 08:53 AM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 09:49 AM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 12:38 PM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 01:21 PM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 01:24 PM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 01:32 PM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 02:57 PM
CI-based Web Sites Performance - by El Forum - 02-13-2008, 08:03 PM
CI-based Web Sites Performance - by El Forum - 03-16-2008, 05:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB