You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While debugging performance issues in https://github.com/JuliaPluto/PlutoSliderServer.jl we found that the Pkg.dependencies() call is quite heavy and was causing IO performance issues. Some profiling showed that write_env_usage was the cause.
I understand that more information on the write_env_usage performance problem would be really useful, but in the meantime I just wanted to ask:
Is it intentional that the call Pkg.dependencies() gets recorded in manifest_usage.toml? I feel like Pkg.dependencies() should not have any side effects. I also don't think it is necessary to record this as "manifest usage", since Pkg.dependencies() is mainly used by scripts and doesn't necessarily signal "usage" by a person.
Thanks!
The text was updated successfully, but these errors were encountered:
While debugging performance issues in https://github.com/JuliaPluto/PlutoSliderServer.jl we found that the
Pkg.dependencies()
call is quite heavy and was causing IO performance issues. Some profiling showed thatwrite_env_usage
was the cause.I understand that more information on the
write_env_usage
performance problem would be really useful, but in the meantime I just wanted to ask:Is it intentional that the call
Pkg.dependencies()
gets recorded inmanifest_usage.toml
? I feel likePkg.dependencies()
should not have any side effects. I also don't think it is necessary to record this as "manifest usage", sincePkg.dependencies()
is mainly used by scripts and doesn't necessarily signal "usage" by a person.Thanks!
The text was updated successfully, but these errors were encountered: