Function: projectile-load-project-cache
projectile-load-project-cache is a byte-compiled function defined in
projectile.el.
Signature
(projectile-load-project-cache PROJECT-ROOT)
Documentation
Load the cache file for PROJECT-ROOT in memory.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-load-project-cache (project-root)
"Load the cache file for PROJECT-ROOT in memory."
(when-let* ((cache-file (projectile-project-cache-file project-root)))
(when (file-exists-p cache-file)
(when-let* ((data (projectile-unserialize cache-file)))
(puthash project-root data projectile-projects-cache)
data))))