[clangd-dev] [cfe-dev] RFC: Symbol index for Clangd design proposal

Dean Michael Berris via clangd-dev clangd-dev at lists.llvm.org
Mon Jul 16 21:19:00 PDT 2018


Hi Kirill,

Thanks for posting this!

I wondered while reading the proposal whether you've considered the
model used by Bigtable [0] where you can have "compactions" or
re-indexing in an incremental manner. You can then do the trigraph
indexing be done quickly, and maintain different versions of the
trigraph indexes that can be concurrently searched while compactions
are happening in the background as new changes are committed through
the LSP API. This will always be a trade-off, but merging the trigraph
indices can happen independently without resorting to mutating the
actual index.

Cheers

[0] https://ai.google/research/pubs/pub27898
On Mon, Jul 16, 2018 at 8:04 PM Kirill Bobyrev via cfe-dev
<cfe-dev at lists.llvm.org> wrote:
>
> Dear LLVM Community,
>
> over the past few weeks, we (Google C++ Language Tools Team) have been working on the efficient symbol index proposal for Clangd. The goal is to improve overall Clangd performance by reducing the latency of different kinds of symbol search queries, such as the ones used for code completion. The plan is to follow the proposed design and replace existing implementation by the end of September.
>
> We are happy to get feedback and comments on the proposal: suggestions are welcome!
>
> The link to design document: https://docs.google.com/document/d/1C-A6PGT6TynyaX4PXyExNMiGmJ2jL1UwV91Kyx11gOI/edit?usp=sharing
>
> Kind regards,
> Kirill Bobyrev
> _______________________________________________
> cfe-dev mailing list
> cfe-dev at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev



-- 
Dean


More information about the clangd-dev mailing list