![]() |
Performance Questions - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Performance Questions (/showthread.php?tid=18364) Pages:
1
2
|
Performance Questions - El Forum - 05-06-2009 [eluser]n0xie[/eluser] I think optimizing prematurely is not a good idea. If the added cost of running the framework and its libraries is a bottleneck, there is something seriously wrong with either your business logic, or your code. There are much better and cheaper ways to improve performance. Since CI is the fastest framework (afaik) out there I wouldn't worry about optimizing anything. If load becomes a problem, caching is the easiest way to scale. Performance Questions - El Forum - 05-06-2009 [eluser]Jagar[/eluser] Thanks for your comments, and that's what I thought but I thought I should check with the pros ![]() At first I was doing many things in one controller, but now I have divided my controller into multiple parts, such as add/edit a user in an admin section. I just wish there was a way I could have [Application] [Controllers] [Folder 1] [Folder 2] I checked the modular ones but they are not working the way i want it. CI is limited to up to Folder 1 |