Function: projectile--frecency-merge-from-disk
projectile--frecency-merge-from-disk is a byte-compiled function
defined in projectile.el.
Signature
(projectile--frecency-merge-from-disk)
Documentation
Merge newer on-disk frecency entries into the in-memory table.
Another Emacs session may have saved since we loaded, so a plain
overwrite would discard its data (the same reason
projectile-merge-known-projects exists). For each file present in
both, the higher visit count and the later timestamp win.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--frecency-merge-from-disk ()
"Merge newer on-disk frecency entries into the in-memory table.
Another Emacs session may have saved since we loaded, so a plain
overwrite would discard its data (the same reason
`projectile-merge-known-projects' exists). For each file present in
both, the higher visit count and the later timestamp win."
(let ((disk-table (let ((projectile--frecency-table nil))
(projectile--frecency-data)))
(table projectile--frecency-table))
(maphash
(lambda (root disk-files)
(let ((files (or (gethash root table)
(puthash root (make-hash-table :test 'equal) table))))
(maphash
(lambda (file disk-entry)
(let ((entry (gethash file files)))
(puthash file
(if entry
(cons (max (car entry) (car disk-entry))
(max (cdr entry) (cdr disk-entry)))
disk-entry)
files)))
disk-files)))
disk-table)))