Closed
Description
Even on my recent:
$ ~/julia-1.6.0-DEV-8f512f3f6d/bin/julia -O3
julia> @time using Plots
10.669931 seconds (11.02 M allocations: 655.843 MiB, 3.90% gc time)
julia> @time using Plots # for some other packages if I recall I've seen up to 1+ sec.
0.611072 seconds (935.63 k allocations: 45.940 MiB, 2.12% gc time)
julia> @time using Plots
0.000317 seconds (230 allocations: 14.219 KiB)
Second and all subsequent using
should all be as fast (not only about Plots.jl). You could ask yourself, why do them, but could well happen in real-world code, and anyway this seems like a low-hanging fruit that should be fixed.
Note, this doesn't happen with all packages, so first I thought it would be a problem with those packages, but I'm not sure. At least none of those I've informed knew of this or have any idea why it happens.
I'm not complaining--here--about the first slow using
(a whole separate issue), nor the the even worse (i.e. first one above is not that):
julia> @time using Plots
[ Info: Precompiling Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80]
122.433167 seconds (11.63 M allocations: 684.720 MiB, 0.18% gc time)