Hi Timmie.

Well, short answer is no: in the current PyLint modus-operandi there's
no real way to make it faster (note that PyLint analysis requests are
triggered by file saves because it needs the files updated in the
filesystem)

The long answer is that the PyLint developers could probably do it by
providing a 'lint service' that can keep caches of what's happening
and then Pydev could ask that running server to analyze while just
updating caches for changed files, reducing a lot of the time as it'd
just have to analyze what has actually been changed and could keep
caches of dependencies in memory (and that's one of the major reasons
why the Pydev code-analysis --
http://fabioz.com/pydev/manual_adv_code_analysis.html -- is so much
faster than other analysis, as it has access to the Pydev caches and
updates those incrementally -- with a plus of being able to work in
the current buffer not only on saved files).

Cheers,

Fabio

On Thu, Feb 19, 2009 at 4:44 PM, Tim Michelsen
<timmichel...@gmx-topmail.de> wrote:
> Hello,
> is there a way to reduce the system load imposed by PyLint?
>
> Sometimes I just enter
>
> myvar =
>
> and pylint would report an error. It starts buliding that fast that I
> cannot even finsh typing in my thoughts.
>
> THen, when I have finshed entering a function, it takes ages to rebuild
> and errors stay there for problems which have already removed.
>
> I really appreciate your pointers here.
> PyLInt always takes my CPU to 50% after some small edits.
>
> Thanks for your help in advance.
>
> Regards,
> Timmie
>
>
> ------------------------------------------------------------------------------
> Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
> -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
> -Strategies to boost innovation and cut costs with open source participation
> -Receive a $600 discount off the registration fee with the source code: SFAD
> http://p.sf.net/sfu/XcvMzF8H
> _______________________________________________
> Pydev-users mailing list
> Pydev-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pydev-users
>

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Pydev-users mailing list
Pydev-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to