]> git.llucax.com Git - software/mutt-debian.git/blob - doc/tuning.html
Imported Upstream version 1.5.18
[software/mutt-debian.git] / doc / tuning.html
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Chapter 7. Performance tuning</title><meta name="generator" content="DocBook XSL Stylesheets V1.71.1" /><link rel="start" href="index.html" title="The Mutt E-Mail Client" /><link rel="up" href="index.html" title="The Mutt E-Mail Client" /><link rel="prev" href="optionalfeatures.html" title="Chapter 6. Optional features" /><link rel="next" href="reference.html" title="Chapter 8. Reference" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 7. Performance tuning</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="optionalfeatures.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="reference.html">Next</a></td></tr></table><hr /></div><div class="chapter" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title"><a id="tuning"></a>Chapter 7. Performance tuning</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="tuning.html#tuning-mailboxes">1. Reading and writing mailboxes</a></span></dt><dt><span class="sect1"><a href="tuning.html#tuning-messages">2. Reading messages from remote folders</a></span></dt><dt><span class="sect1"><a href="tuning.html#tuning-search">3. Searching and limiting</a></span></dt></dl></div><div class="sect1" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="tuning-mailboxes"></a>1. Reading and writing mailboxes</h2></div></div></div><p>
4 Mutt's performance when reading mailboxes can be improved in two ways:
5 </p><p>
6 </p><div class="orderedlist"><ol type="1"><li><p>
7 For remote folders (IMAP and POP) as well as folders using
8 one-file-per message storage (Maildir and MH), mutt's
9 performance can be greatly improved using
10 <a href="optionalfeatures.html#header-caching" title="7.1. Header caching">header caching</a>.
11 Using a single database per folder may further increase
12 performance.
13 </p></li><li><p>
14 Mutt provides the <a href="reference.html#read-inc" title="3.235. read_inc">$read_inc</a>
15 and <a href="reference.html#write-inc" title="3.304. write_inc">$write_inc</a>
16 variables to specify at which rate to update progress
17 counters. If these values are too low, mutt may spend more
18 time on updating the progress counter than it spends on
19 actually reading/writing folders.
20 </p><p>
21 For example, when opening a maildir folder with a few
22 thousand messages, the default value for
23 <a href="reference.html#read-inc" title="3.235. read_inc">$read_inc</a>
24 may be too low. It can be tuned on on a folder-basis using
25 <a href="configuration.html#folder-hook" title="6. Setting variables based upon mailbox">folder-hooks</a>:
26
27 </p><pre class="screen">
28 # use very high $read_inc to speed up reading hcache'd maildirs
29 folder-hook . 'set read_inc=1000'
30 # use lower value for reading slower remote IMAP folders
31 folder-hook ^imap 'set read_inc=100'
32 # use even lower value for reading even slower remote POP folders
33 folder-hook ^pop 'set read_inc=1'</pre><p>
34 </p></li></ol></div><p>
35 </p><p>These settings work on a per-message basis. However, as messages may
36 greatly differ in size and certain operations are much faster than others,
37 even per-folder settings of the increment variables may not be
38 desirable as they produce either too few or too much progress updates.
39 Thus, Mutt allows to limit the number of progress updates per second it'll
40 actually send to the terminal using the
41 <a href="reference.html#time-inc" title="3.286. time_inc">$time_inc</a> variable.</p></div><div class="sect1" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="tuning-messages"></a>2. Reading messages from remote folders</h2></div></div></div><p>
42 Reading messages from remote folders such as IMAP an POP can be
43 slow especially for large mailboxes since mutt only caches a very
44 limited number of recently viewed messages (usually 10) per
45 session (so that it will be gone for the next session.)
46 </p><p>
47 To improve performance and permanently cache whole messages,
48 please refer to mutt's so-called
49 <a href="optionalfeatures.html#body-caching" title="7.2. Body caching">body caching</a> for details.
50 </p></div><div class="sect1" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="tuning-search"></a>3. Searching and limiting</h2></div></div></div><p>
51 When searching mailboxes either via a search or a limit action, for
52 some patterns mutt distinguishes between regular expression and string
53 searches. For regular expressions, patterns are prefixed with
54 ``˜'' and with ``='' for string searches.
55 </p><p>
56 Even though a regular expression search is fast, it's several times
57 slower than a pure string search which is noticable especially on large
58 folders. As a consequence, a string search should be used instead of a
59 regular expression search if the user already knows enough about the
60 search pattern.
61 </p><p>
62 For example, when limiting a large folder to all messages sent to or by
63 an author, it's much faster to search for the initial part of an e-mail
64 address via <code class="literal">=Luser@</code> instead of
65 <code class="literal">˜Luser@</code>. This is especially true for searching
66 message bodies since a larger amount of input has to be searched.
67 </p><p>
68 Please note that string search is an exact case-sensitive search
69 while a regular expression search with only lower-case letters performs
70 a case-insensitive search.
71 </p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="optionalfeatures.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="reference.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 6. Optional features </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 8. Reference</td></tr></table></div></body></html>