Variable: org-persist--index
org-persist--index is a variable defined in org-persist.el.gz.
Value
((:container ((index "3.2")) :persist-file
"91/1805d5-eaea-49a4-9770-f1e0c38380c6" :associated nil
:expiry never))
Documentation
Global index.
The index is a list of plists. Each plist contains information about persistent data storage. Each plist contains the following properties:
- :container : list of data containers to be stored in single file
- :persist-file: data file name
- :associated : list of associated objects
- :last-access : last date when the container has been read
- :expiry : list of expiry conditions
- all other keywords are ignored.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-persist.el.gz
(defvar org-persist--index nil
"Global index.
The index is a list of plists. Each plist contains information about
persistent data storage. Each plist contains the following
properties:
- `:container' : list of data containers to be stored in single file
- `:persist-file': data file name
- `:associated' : list of associated objects
- `:last-access' : last date when the container has been read
- `:expiry' : list of expiry conditions
- all other keywords are ignored.")