This file is indexed.

/usr/share/glib-2.0/schemas/org.freedesktop.Tracker.FTS.gschema.xml is in tracker 0.14.0-2ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
  <schema path="/org/freedesktop/tracker/fts/" id="org.freedesktop.Tracker.FTS">

    <key type="i" name="min-word-length">
      <default>3</default>
      <range min="0" max="30"/>
      <summary>Minimum length of a word to be indexed</summary>
      <description>Words with less characters than this will be ignored by the indexer.</description>
    </key>

    <key type="i" name="max-word-length">
      <default>30</default>
      <range min="0" max="200"/>
      <summary>Maximum length of a word to be indexed</summary>
      <description>Words with more characters than this length will be ignored by the indexer.</description>
    </key>

    <key type="i" name="max-words-to-index">
      <default>10000</default>
      <summary>Maximum number of words to index in a document</summary>
      <description>Indexer will read only this maximum number of words from a single document.</description>
    </key>

    <key type="b" name="enable-stemmer">
      <summary>Enable stemmer</summary>
      <description>Simplify the words to their root to provide more results. E.g. 'shelves' and 'shelf' to 'shel'</description>
      <default>false</default>
    </key>

    <key type="b" name="enable-unaccent">
      <summary>Enable unaccent</summary>
      <description>Translate accented characters to the equivalent unaccented. E.g. 'Idéa' to 'Idea' for improved matching.</description>
      <default>true</default>
    </key>

    <key type="b" name="ignore-numbers">
      <summary>Ignore numbers</summary>
      <description>If enabled, numbers will not be indexed.</description>
      <default>true</default>
    </key>

    <key type="b" name="ignore-stop-words">
      <summary>Ignore stop words</summary>
      <description>If enabled, the words listed in the stop-words list are ignored. E.g. common words like 'the', 'yes', 'no', etc.</description>
      <default>true</default>
    </key>

  </schema>
</schemalist>