This is the speed I get with a clean .julia profile:
julia> @time using HTTP
0.185504 seconds (50.50 k allocations: 4.633 MiB, 85.81% compilation time)
With non-default options I can get down to:
julia> @time using HTTP
0.088289 seconds (58.23 k allocations: 5.123 MiB, 54.43% compilation time)
but with the .julia folder I had I get:
$ ~/julia-1.7.0/bin/julia --startup-file=no
(@v1.7) pkg> up
julia> @time using HTTP
0.219551 seconds (113.09 k allocations: 7.679 MiB, 74.00% compilation time)
It’s not bad, but slower (and more allocations). I suspect it might be because the dependencies are not at the same version, so is there a quick way to check or to ensure at all at latest version? What else could it be?