Function: projectile-cache-project

projectile-cache-project is a byte-compiled function defined in projectile.el.

Signature

(projectile-cache-project PROJECT FILES)

Documentation

Cache PROJECTs FILES.

The cache is created both in memory and on the hard drive.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-cache-project (project files)
  "Cache PROJECTs FILES.
The cache is created both in memory and on the hard drive."
  (puthash project files projectile-projects-cache)
  (puthash project (projectile-time-seconds) projectile-projects-cache-time)
  (when (projectile-persistent-cache-p)
    (projectile-serialize files (projectile-project-cache-file project))))