Function: cider-resolve--ns-cache

cider-resolve--ns-cache is a byte-compiled function defined in cider-resolve.el.

Signature

(cider-resolve--ns-cache)

Documentation

Return the current connection's track-state namespace cache dict, or nil.

Thin wrapper over cider-ns-load-cache. Resolving the connection is comparatively expensive when called from a source buffer (the indentation path does this), so callers performing several lookups should bind this once and reuse it rather than going through cider-resolve--get-in repeatedly.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-resolve.el
(defun cider-resolve--ns-cache ()
  "Return the current connection's track-state namespace cache dict, or nil.
Thin wrapper over `cider-ns-load-cache'.  Resolving the connection is
comparatively expensive when called from a source buffer (the indentation
path does this), so callers performing several lookups should bind this
once and reuse it rather than going through `cider-resolve--get-in'
repeatedly."
  (cider-ns-load-cache))