julia-vscode / SymbolServer.jl

Other
23 stars 30 forks source link

Store a little less information about types #128

Closed ZacLN closed 4 years ago

ZacLN commented 4 years ago

This reduces the amount of type information cached by only storing the name of parameters rather than the full type. For example Union{Int, Vector{Int}} -> Union{Int,Vector}. This is good enough for our uses.

Without this the loaded cache for my own environment was ~1Gb when using vscode..