Variable: org-persist--index

org-persist--index is a variable defined in org-persist.el.gz.

Value

((:container
  ((index "3.1"))
  :persist-file "8b/0a3e08-0874-48cb-ba64-c485e639d1b3" :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.")