What is considered a "larger project"? #410
-
|
I'm wondering when it begins to become beneficial to index the project. The README contains the following:
But what constitutes "larger projects"? For example, does a monorepo with > 50k lines of code need to be indexed? Do monorepo's need to be indexed earlier than repos that contain only one project? Is this more about directory structure or number of lines/tokens/etc.? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You never have to index beforehand, but just the following can happen:
So in order to have a smooth user experience, we recommend to build the cache explicitly for larger projects, so that a first call to find_symbol doesn't appear to hang. That's all |
Beta Was this translation helpful? Give feedback.
You never have to index beforehand, but just the following can happen:
So in order to have a smooth user experience, we recommend to build the cache explicitly for larger projects, so that a first call to find_symbol does…