Go backend performs very poorly for private modules with many versions #13357
Unanswered
connorszczepaniak-wk
asked this question in
Troubleshooting and bug reports
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Running
mise use -v -g go:github.com/company/private@latesttakes an extremely long time whencompany/privatehas >1000 releases. It looks like when a module isn't proxied (because it's private), mise falls back togo listfor every version, and this takes a very long time.Could
misejust directly callgo install github.com/company/private@latest?latestis directly supported bygo installwith no need to list all versions, andgo installalso supports installing at a version using the same syntax. Why doesmiseneed to list all versions before installing?All reactions