You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.Qdrant/Models/Requests/CreateIndexRequest.cs

35 lines
1.1 KiB

namespace ZeroLevel.Qdrant.Models.Requests
{
2 years ago
public enum IndexFieldType
{
Keyword,
Integer,
Float,
Geo
}
/// <summary>
/// Available field types are:
/// keyword - for keyword payload, affects Match filtering conditions.
/// integer - for integer payload, affects Match and Range filtering conditions.
/// float - for float payload, affects Range filtering conditions.
/// geo - for geo payload, affects Geo Bounding Box and Geo Radius filtering conditions.
/// </summary>
internal sealed class CreateIndexRequest
{
2 years ago
public string field_name { get; set; }
public string field_type { get; set; }
public CreateIndexRequest(string name, IndexFieldType type)
{
field_name = name;
switch (type)
{
case IndexFieldType.Integer: field_type = "integer"; break;
case IndexFieldType.Float: field_type = "float"; break;
case IndexFieldType.Geo: field_type = "geo"; break;
case IndexFieldType.Keyword: field_type = "keyword"; break;
}
}
}
}

Powered by TurnKey Linux.