ranga999 Posted February 9, 2012 Share Posted February 9, 2012 Hi Guys, We have developed an application in PHP but its performance is poor, we found the reason, that is due to poor database design then we alter the structure then it performing some what fine. but I want to know what are steps need to be taken before developing an application. Can someone guide me on this or point me to a resource where I can get such useful information. Thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/256734-enhancing-php-applicaiton-perfomance/ Share on other sites More sharing options...
scootstah Posted February 9, 2012 Share Posted February 9, 2012 If you spend too much time trying to optimize code before it is written, you are likely wasting time. If you feel your application is too slow afterwards, you can profile it and attempt to pin-point where the slowness is coming from and then you can try to optimize it. Learn how to normalize the database and make sure your queries are efficient (like using joins over sub-selects, not looping queries, not using multiple queries when you could have used a single query, etc). Quote Link to comment https://forums.phpfreaks.com/topic/256734-enhancing-php-applicaiton-perfomance/#findComment-1316118 Share on other sites More sharing options...
ranga999 Posted February 10, 2012 Author Share Posted February 10, 2012 Thank you Quote Link to comment https://forums.phpfreaks.com/topic/256734-enhancing-php-applicaiton-perfomance/#findComment-1316486 Share on other sites More sharing options...
thehippy Posted February 12, 2012 Share Posted February 12, 2012 When it comes to performance, there is never just one reason. Some decent resources, start reading... Pro PHP Application Performance (Book) mysql.com/performance High Performance MySQL (Book) google resources on website performance High Performance Web Sites (Book) Quote Link to comment https://forums.phpfreaks.com/topic/256734-enhancing-php-applicaiton-perfomance/#findComment-1317369 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.