Class BinaryDocValuesField
Field that stores a per-document Bytes
The values are stored directly with no sharing, which is a good fit when
the fields don't share (many) values, such as a title field. If values
may be shared and sorted it's better to use Sorted
document.Add(new BinaryDocValuesField(name, new BytesRef("hello")));
If you also need to store the value, you should add a
separate Stored
Inheritance
System.Object
BinaryDocValuesField
Implements
Inherited Members
Namespace: Lucene.Net.Documents
Assembly: Lucene.Net.dll
Syntax
public class BinaryDocValuesField : Field, IIndexableField
Constructors
| Improve this Doc View SourceBinaryDocValuesField(String, BytesRef)
Create a new binary Doc
Declaration
public BinaryDocValuesField(string name, BytesRef value)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | field name |
Bytes |
value | binary content |
Fields
| Improve this Doc View SourcefType
Type for straight bytes Doc
Declaration
public static readonly FieldType fType
Field Value
Type | Description |
---|---|
Field |