-
-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jank repl clojure.core
loads clojure.core twice
#166
Comments
We can actually go up to 3 it seems After this, any subsequent calls don't show the log message. This implies that
Is this right @jeaye ? If so it seems we should always cache namespaces when we |
Nope, it's an issue with the module loader. Should be marking this as loaded and then not loading it again. I said the same thing over on the PR: #175 |
the native Two ways we can go:
Perhaps, we can make do with the first one. But I am gonna check how clojure does it first. |
Ok, that's a good breakdown. Choosing one of those is necessary, over the change we have in this PR, though. We'll need to ensure that modules don't get loaded again. To me, I think that the first option is the only viable one, since this will apply to any module loaded natively. Given that jank is a C++ library as well as a language, people will be using jank to load modules natively. Those need to be properly handled. |
The text was updated successfully, but these errors were encountered: