<p><ahref="attributes.html">Атрибуты</a> и <ahref="queries.html">Запросы</a> являются ключевыми особенностями Haiku. Хотя атрибуты и полезны для отображения дополнительной инфомации о файлах, но для поиска по ним, требуется их проиндексировать. Индексы заносится в таблицу поиска, что делает запросы молниеносными..<br/>
Индекс является частью файловой системы и хранятся отдельно для каждого раздела.</p>
<h2>Индексация при помоши Терминала</h2>
<p>Ниже приведено несколько команд для управления индексами:</p>
<ul>
<li><b>lsindex</b> - Отображает проиндексированные атрибуты на текущем разделе.<br/>
Следующие атрибуты проиндексированы по умолчанию:</li>
</ul>
<preclass="terminal"> ~ ->lsindex
BEOS:APP_SIG
MAIL:account
MAIL:cc
MAIL:chain
MAIL:draft
MAIL:flags
MAIL:from
MAIL:name
MAIL:pending_chain
MAIL:priority
MAIL:reply
MAIL:status
MAIL:subject
MAIL:thread
MAIL:to
MAIL:when
META:address
META:city
META:company
META:country
META:email
META:fax
META:group
META:hphone
META:name
META:nickname
META:state
META:url
META:wphone
META:zip
_signature
_status
_trk/qrylastchange
_trk/recentQuery
be:deskbar_item_status
last_modified
name
size
</pre>
<ul>
<li><b>mkindex</b> - Индексирует заданный атрибут на текущем разделе. </li>
</ul>
<pre>Usage: mkindex [options] <attribute>
Creates a new index for the specified attribute.
-d, --volume=PATH a path on the volume to which the index will be added,
defaults to current volume.
-t, --type=TYPE the type of the attribute being indexed. One of "int",
"llong", "string", "float", or "double".
Defaults to "string".
--copy-from path to volume to copy the indexes from.
-v, --verbose print information about the index being created
</pre>
<p>Только <b>новые</b> файлы с заданным атрибутом будут автоматические добавлены в индекс!<br/>
Уже существующие файлы придется добавлять вручную, путем копирования и удаления оригинала. В качестве альтернативы можно воспользоваться программой <spanclass="cli">reindex</span>.
</p>
<ul>
<li><b>reindex</b> - Добавляет атрибуты для уже существующих файлов во вновь созданный индекс на текущем разделе. </li>
</ul>
<pre>Usage: reindex [-rvf] attr <list of filenames and/or directories>
-r enter directories recursively
-v verbose output
-f create/update all indices from the source volume,
"attr" is the path to the source volume
</pre>
<ul>
<li><b>rmindex</b> - Позволяет удалить атрибут из индекса с текущего раздела. </li>
</ul>
<pre>Usage: rmindex [OPTION]... INDEX_NAME
Removes the index named INDEX_NAME from a disk volume. Once this has been
done, it will no longer be possible to use the query system to search for
files with the INDEX_NAME attribute.
-d, --volume=PATH a path on the volume from which the index will be
removed
-h, --help display this help and exit
-p, --pattern INDEX_NAME is a pattern
-v, --verbose print information about the index being removed
INDEX_NAME is the name of a file attribute.
If no volume is specified, the volume of the current directory is assumed.</pre>