Posted by Andrei Filonov in Web development
on Aug 10th, 2009 | 0 comments
Looks like Eclipse PDT was getting quite slow on me, it thinks sometimes 10-15 seconds when I switch between files or save one. My current project is not small one, but still…
Looking around for a solutions I found quite easy tip at
http://www.eclipsezone.com/eclipse/forums/t61618.html
In short – I am now running
eclipse.exe -vmargs -Xms256m -Xmx256m -XX:PermSize=64m -XX:MaxPermSize=64m
and my Eclipse is way faster.
Thanks for the tip, Riyad Kalla!
Posted by Andrei Filonov in Web development
on May 25th, 2009 | 0 comments
I am using Joomla for the content management, and it looks like my site is getting slow, no, not just slow, it’s SLOW.
Quick check in the MySQL database showed that there is no really big tables which could cause some delays if not indexed properly or getting locked. So, next step would be naturally looking into the PHP code itself trying to identify bottlenecks.
First of all – copy everything to test site – I don’t really want to shut the site down or display some debug info to the visitors. My test site is actually a linux box which is pretty old one, so it probably will run...