Oihana PHP Arango

StoreValues uses ConstantsTrait

Per-link / per-field `storeValues` strategy on an ArangoSearch view.

Controls whether the view keeps the indexed values alongside the inverted index, so that AQL SEARCH queries can return the value without touching the source document.

Tags
see
https://docs.arangodb.com/stable/index-and-search/arangosearch/arangosearch-views-reference/#link-properties
author

Marc Alcaraz (ekameleon)

since
1.0.0

Table of Contents

Constants

ID  : string = 'id'
The view also stores the source document's `_id` next to each index entry. Slightly heavier on disk; lets `SEARCH` covering queries avoid the document round-trip.
NONE  : string = 'none'
The view stores only the index entries themselves — no extra payload. Default behaviour.

Constants

ID

The view also stores the source document's `_id` next to each index entry. Slightly heavier on disk; lets `SEARCH` covering queries avoid the document round-trip.

public string ID = 'id'

NONE

The view stores only the index entries themselves — no extra payload. Default behaviour.

public string NONE = 'none'
On this page

Search results