[skip ci] Update typo in basic_type.md doc (#11564)

Signed-off-by: shaoyue.chen <shaoyue.chen@zilliz.com>
pull/11590/head
shaoyue 2021-11-10 19:52:15 +08:00 committed by GitHub
parent 8a1e90b953
commit 5a264fbd05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -4,13 +4,13 @@
- `Segment`: The memory structure of storing a piece of data which supports concurrent insertion, deletion, query, index loading, monitoring and statistics
- `Schema`: Definition of collection data format, including
- `vector<FieldMeta>`: Order list of FieldMeta
- `isAutoId`: if set to True , default primary field is `RowId` and it is auto generated
- `primaryKey`: (when `isAutoId = False`) specify primary key field
- `FieldMeta`: field properties, including
- `DataType`: data type, including Int8...Int64, Float, Double, FloatVector, BinaryVector and String later
- `Dim`: (when dataType is vector) type vector dimension
- `metric_type`: (when dataType is vector type, optional) the metric type corresponding to this vector is related to the small batch index and can be empty
- `FieldName`: column name
- `FieldId`: unique number of the column
- (hidden) `FieldOffset`: which is the subscript of `vector<Field>` in the schema. The internal calculation of segcore is basically based on fieldoffset
- `Span`: similar to STD::span. It supports vector type of data and can be implicitly converted to `SpanBase` for interface overwrite
- `isAutoId`: If set to True , default primary field is `RowId` and it is auto generated
- `primaryKey`: (When `isAutoId = False`) Specify primary key field
- `FieldMeta`: Field properties, including
- `DataType`: Data type, including Int8...Int64, Float, Double, FloatVector, BinaryVector and String later
- `Dim`: (When dataType is vector) Type vector dimension
- `metric_type`: (When dataType is vector type, optional) The metric type corresponding to this vector is related to the small batch index and can be empty
- `FieldName`: Column name
- `FieldId`: Unique number of the column
- (hidden) `FieldOffset`: Which is the subscript of `vector<Field>` in the schema. The internal calculation of segcore is basically based on field offset
- `Span`: Similar to STD::span. It supports vector type of data and can be implicitly converted to `SpanBase` for interface overwrite