Index Type

    +
    fts index type interface

    Following options are available:

    • Version 6.0 (Scorch) reduces the size of the index-footprint on disk and provides enhanced performance for indexing and mutation-handling

    • Version 5.0 (Moss) is the standard form of index to be used in test, development, and production. This version is deprecated.

    The type of an index is saved in its JSON definition, which can be previewed in the Index Definition Preview panel, at the right-hand side.

    Example

    Version 5.0 contained the following value for the store attribute:

    "store": {
      "kvStoreName": "mossStore"
    },

    Version 6.0 and later contains a different value:

    "store": {
      "kvStoreName": "",
      "indexType": "scorch"
    },