Eli Zaretskii <e...@gnu.org> writes: >> I am not convinced that we have to do it. > > That's too bad. When a user finds out about this caching, how do you > propose that he/she looks for the information about it? I wanted to > know what is being cached, why, and in what file/directory. It took > me quite some time to find the answers, since Org is a very large > package, and there's no org-cache.el file or similar to serve as the > immediate suspect. Surely, such a basic functionality should be at > least hinted in the documentation, so that users new which options to > look at and where?
Maybe. Although it is not clear where to document such things. Ideally, it would be nice if caches were managed by Emacs itself, with all the cache storage locations customizeable across various packages. Then, documenting cache locations in the Emacs manual would suffice. Would it be possible for Emacs to define a framework for cache/var/data locations? Such framework would not only be useful in the context of this discussion, but also to tackle the issue with packages sprinkling things randomly into .emacs.d or ~/ (see https://github.com/emacscollective/no-littering/) >> Emacs user manual does not document `multisession-directory' - something >> very close to how we implement Org caches. So, apparently, customizing >> `multisession-directory' and even the very multisession feature >> existence is not deemed necessary inside Emacs manual. Why would it be >> different for Org mode manual? > > multisession is an optional package, it is neither preloaded nor > turned on by default in Emacs. It is used by default in emoji.el (C-x 8 e r) > ... And even if Emacs makes a mistake of > not documenting anything it is not a valid argument to make the same > mistake elsewhere. I 100% agree. But my default assumption is that things added to Emacs are usually documented in the manual, if necessary. I assumed that the judgment was that documenting multisession was not necessary and worked out of that assumption. Of course, if you say that multisession and similar things should be documented, I will follow. Let's discuss the details. (Also, should we open some kind of bug report to track documenting multisession in the manual?) > The emacs-internal encoding is not binary. In almost all the cases it > is indistinguishable from utf-8-unix. It differs where a buffer > includes characters outside of the Unicode codespace. The usual > practice in Emacs is that files holding internal data use > emacs-internal to make sure all the characters are saved correctly and > can be later restored correctly. Then, I agree that using emacs-internal for cached data makes sense. Note, however, that I see no indication about such convention in the manual. The only relevant bit is The coding system ‘utf-8-emacs’ specifies that the data is represented in the internal Emacs encoding (*note Text Representations::). This is like ‘raw-text’ in that no code conversion happens, but different in that the result is multibyte data. The name ‘emacs-internal’ is an alias for ‘utf-8-emacs-unix’ (so it forces no conversion of end-of-line, unlike ‘utf-8-emacs’, which can decode all 3 kinds of end-of-line conventions). However, I cannot come to the conclusion you pointed from reading that paragraph. Would it make sense to add the tip about storing Elisp data somewhere in the Elisp manual? -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>