I use syntastic plugin with vim to check for error's when I save a file using :w.
Today I suddenly observed that when I tried to check my perl file for errors by saving it syntastic took a lot of time (~7-8 secs) to report any errors and during that whole time my CPU usage was 30-35%. I also tried it with a file that doesn't contains any error and the result was same as previous.
Now during this interval I checked htop to see what process are running in reference to vim+perl. I found these two process at the top:
perl -c -X test.pl
perl -c -w test.pl
Now the interesting thing is CPU usage only rose when I use an external module in my code. If I am writing a normal perl code which includes the perl core modules everything works fine.
The problem arised when I used this module and the code I use is http://sprunge.us/HFPi
So, anybody got any ideas for this weird problem.
perl -c -X test.plandperl -c -w test.plin terminal they also took a lot of time. So, you are right the problem is the with the module code and not vim – Noob Sep 9 '12 at 18:49perl -c -w test.plequally slow outside of vim? [If so, not a vim/syntastic issue] Isperl -c -w -e'use Audio::MPD;'equally slow? [If so, bringing it up with that module's author.] – ikegami Sep 9 '12 at 19:24