-
Notifications
You must be signed in to change notification settings - Fork 14
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
Use in production? #44
Comments
I’ve never used it in production, but in staging yes. As long as it’s on the classpath when the process is started you can just repl in and require it from any namespace. |
I have no absolute recommendation, but here are some things to consider:
I guess the situation for scope-capture is the same as for any dependency-free Clojure library:
Does that answer your questions @viebel ? |
@vvvvalvalval : for completeness, other than a plain' ol mem leak (due to the atom), is there any other significant impact in terms of performance or correctness? |
@vemv for performance, nothing I can think of - the sources of overhead are the effects of saving to the atom and logging. For correctness, the main risk is that the |
What is your recommendation about using scope-capture in production so that we could connect to a nREPL (e.g. with lein) and inspect our code?
Is there a way to dynamically load
scope-capture
?Is it safe to include scope-capture to our code base ?
The text was updated successfully, but these errors were encountered: