Variable: projectile--pending-cache-flush-timers

projectile--pending-cache-flush-timers is a variable defined in projectile.el.

Value

#s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data
	      ())

Documentation

Map of project root to a pending idle-timer that will serialize its cache.

Used by projectile-cache-current-file to coalesce rapid file additions into a single delayed disk write per project.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defvar projectile--pending-cache-flush-timers (make-hash-table :test 'equal)
  "Map of project root to a pending idle-timer that will serialize its cache.
Used by `projectile-cache-current-file' to coalesce rapid file additions
into a single delayed disk write per project.")