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
The default implementation stores all unique SQL sentences on a HashMap, which is a potential memoery leak. The default should be a fast bounded cache.
The text was updated successfully, but these errors were encountered:
Thoughts on using Caffeine as a default cache backend? Already has Clojure wrappings
Another option is using core.cache.
Caffeine is probably more battle-tested.
I'd be happy to implement the chosen solution.
The default implementation stores all unique SQL sentences on a
HashMap
, which is a potential memoery leak. The default should be a fast bounded cache.The text was updated successfully, but these errors were encountered: