Reputation: 3691
Some pages on my site take a while to load. I was wondering if there were any free tools that could help me speed up/improve the code. I've googled a bit but I wanna her from the experts.
EDIT: I'm using PHP, MySQL, jQuery, etc.
Upvotes: 1
Views: 165
Reputation: 1190
The first step is to understand there are two aspects of site performance - back-end (server & database related) and front-end (browser/caching related). Optimizing a dynamic website for database speed, server speed and so-on is almost a entire discipline itself.
Optimizing for the front-end, where the browser requests the page and it's elements from the server is where 80% of most "speed" issues with websites lie, so that's what I'll focus on.
The first step is to identify where your speed issues occur. There's several online tools that can help with that part:
The biggest gains can normally made around combining/minification/compression of your content, and one of the better tools that enable you to do that is the Minify project (requires PHP).
That should give you enough to start with until you come back with specifics.
Upvotes: 1
Reputation: 4983
It depends on what your using for the coding of your website. It also may depend on the server your using. Are you doing much interaction with a database? If so, then maybe researching PHP optimization could help you better. If not, look at your website and I'd suggest cutting down on images as much as possible. Images are huge in size and can take ages to load; so if you know there's something on your website that you could do in code... then do it in code, skip out on images whenever possible.
Upvotes: 0