Class SortedSetDocValuesField
Field that stores a set of per-document BytesRef values, indexed for faceting,grouping,joining. Here's an example usage:
document.Add(new SortedSetDocValuesField(name, new BytesRef("hello")));
document.Add(new SortedSetDocValuesField(name, new BytesRef("world")));
If you also need to store the value, you should add a separate StoredField instance.
Inherited Members
Assembly: DistributedLucene.Net.dll
Syntax
public class SortedSetDocValuesField : Field, IIndexableField
Constructors
Name | Description |
---|---|
SortedSetDocValuesField(String, BytesRef) | Create a new sorted DocValues field. |
Fields
Name | Description |
---|---|
TYPE | Type for sorted bytes DocValues |