![]() |
what about the perfomance of this site? - 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: what about the perfomance of this site? (/showthread.php?tid=19653) Pages:
1
2
|
what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]Brain Coder[/eluser] hello i have finish 60% of my codeigniter website but after i have uploading it to my web server to make a test on it i notice the website is slow take a look here www.smylat.com click new on the right hand and test it until i have another website on the same server , but its very speed www.9amem.com is there any idea to make this slow disapear? what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]TheFuzzy0ne[/eluser] Seems fine to me. If you enable the profiler, or add {elapsed_time} to the bottom of your footer view, you'll be able to see how fast the script is. I think the problem is network congestion. You can't expect a remote server to be anywhere near as fast as a server on your localhost, or on the LAN. what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]Brain Coder[/eluser] i have enable the profiler now can you check on it if is there any wrong note: i like your signature ![]() what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]Dam1an[/eluser] It all seems fast enough for me... all the pages load in ~0.2 seconds what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]TheFuzzy0ne[/eluser] I think anything under 1 second is acceptable on a shared host. Anything less than 0.5 makes me smile. what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]Dam1an[/eluser] The figures you often hear being quoted are anything less then 2 seconds is acceptable, but anything more then that, and most users will leave before it loads unless it's something they really need what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]Brain Coder[/eluser] thanks for both of you for this fast replay i really was on right when i say codeigniter make the life sooo easy ![]() what about the perfomance of this site? - El Forum - 06-14-2009 [eluser]slowgary[/eluser] The first time I visited, it took 3 seconds, but a few refreshes showed that it fluctuates. It's definitely the host. One thing on your end is the memory usage is at almost 4MB. That seems like a lot. My ecommerce site calls 5 database queries (more complex than yours) and is still only using 1.7MB. It appears to be just a blank page. What else is going on under the hood? Are you loading tons of CI libraries? what about the perfomance of this site? - El Forum - 06-15-2009 [eluser]Brain Coder[/eluser] on the auto load i load this libraries and helper $autoload['libraries'] = array('database','table','session','tank_auth','ftp'); $autoload['helper'] = array('url','file','form','security','date','text','html'); is there any way to decraese the memory usage ? what about the perfomance of this site? - El Forum - 06-15-2009 [eluser]Dam1an[/eluser] you should only autoload what you use on every page Load other stuff in the controller/function you need them |