Variable: gnus-agent-article-alist-save-format
gnus-agent-article-alist-save-format is a customizable variable
defined in gnus-agent.el.gz.
Value
1
Documentation
Indicates whether to use compression(2), versus no compression(1), when writing agentview files. The compressed files do save space but load times are 6-7 times higher. A group must be opened then closed for the agentview to be updated using the new format.
This variable was added, or its default value changed, in Emacs 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-agent.el.gz
(defcustom gnus-agent-article-alist-save-format 1
"Indicates whether to use compression(2), versus no
compression(1), when writing agentview files. The compressed
files do save space but load times are 6-7 times higher. A group
must be opened then closed for the agentview to be updated using
the new format."
;; Wouldn't symbols instead numbers be nicer? --rsteib
:version "22.1"
:group 'gnus-agent
:type '(radio (const :format "Compressed" 2)
(const :format "Uncompressed" 1)))