Variable: magit--refresh-cache
magit--refresh-cache is a variable defined in magit-git.el.
Value
nil
Documentation
Cache used during refreshes and other expensive operations.
If non-nil, this has the form ((HITS . COUNT) . ENTRIES). HITS is how many times any of the cached ENTRIES were accessed. COUNT is the number of ENTRIES. Each entry has the form (KEY . VALUE). KEY can have one of two forms (TOPDIR . ARGUMENTS) or (TOPDIR . ACTION). TOPDIR is the top-level directory of a repository. ARGUMENTS are arguments to git. ACTION is a symbol identifying an action other than calling git. VALUE is the cached value.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260822.1158/magit-git.el
(defvar magit--refresh-cache nil
"Cache used during refreshes and other expensive operations.
If non-nil, this has the form ((HITS . COUNT) . ENTRIES). HITS is how
many times any of the cached ENTRIES were accessed. COUNT is the number
of ENTRIES. Each entry has the form (KEY . VALUE). KEY can have one
of two forms (TOPDIR . ARGUMENTS) or (TOPDIR . ACTION). TOPDIR is the
top-level directory of a repository. ARGUMENTS are arguments to git.
ACTION is a symbol identifying an action other than calling git. VALUE
is the cached value.")