Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've noticed that in a file search (CTRL+H) in Eclipse, the first time you search against a "Working Set" it takes a considerable amount of time for the search to complete. Subsequent searches on that Working Set run much faster, presumably because there is some sort of index it is searching against rather than the actual files. However, after a (un)certain amount of time that indexing seems to expire and the search routine reverts back to the full file parsing.

What is the lifetime of this cached indexing? Can it be increased or persisted?

share|improve this question

3 Answers

up vote 2 down vote accepted

I believe that this is OS-level caching in effect. Eclipse itself doesn't cache your files when searching via CTRL-H.

share|improve this answer

If you want faster searches use the InstaSearch Eclipse Plugin. It creates and always searches in its own index. Shows results as-you-type.

share|improve this answer
Thanks! I'll check this out. – Dane Mar 21 '12 at 17:39

Wow, thats is really bad. I DON'T want eclipse to hog my filecache: if I only search one time I dont want everything ELSE to be slow. :(

I sometimes search through tens of thousands of files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.