CodeIgniter Forums
Image thumbnails question - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Image thumbnails question (/showthread.php?tid=10015)



Image thumbnails question - El Forum - 07-16-2008

[eluser]Unknown[/eluser]
Is thumbnails dynamic creating very hard for server? I am using "dynamic_output" when thumbnail creating, but I dont know, if it is too hard for my server (15 thumbnails per page, about 25 pages per minute).


Image thumbnails question - El Forum - 07-16-2008

[eluser]hvalente13[/eluser]
[quote author="sniezna.stopa" date="1216235570"]Is thumbnails dynamic creating very hard for server? I am using "dynamic_output" when thumbnail creating, but I dont know, if it is too hard for my server (15 thumbnails per page, about 25 pages per minute).[/quote]

You can check that by using the CI profiler:

Code:
$this->output->enable_profiler(TRUE);

Put this at the beginning of your controller function.

Hope this helps.