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..
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..