SearchField.IsStored Property

Definition

An immutable value indicating whether the field will be persisted separately on disk to be returned in a search result. You can disable this option if you don't plan to return the field contents in a search response to save on storage overhead. This can only be set during index creation and only for vector fields. This property cannot be changed for existing fields or set as false for new fields. If this property is set as false, the property 'retrievable' must also be set to false. This property must be true or unset for key fields, for new fields, and for non-vector fields, and it must be null for complex fields. Disabling this property will reduce index storage requirements. The default is true for vector fields.

public bool? IsStored { get; set; }
member this.IsStored : Nullable<bool> with get, set
Public Property IsStored As Nullable(Of Boolean)

Property Value

Applies to