I need to provide custom vars for my users, such as the warning-on-reflection provided by clojure AFAIK, they are not defined on the clojure side, so we can install them.
The problem is that my vars (all configuration items) are used in many hard loops, so I donβt want them to refer to them, because they MAY be installed when the application starts, and this will not change at runtime, they will be read maybe millions of times, so making them refs seems like a waste of resources.
So the question is, can I define custom vars in my case?
source share