Qdrant · Schema

SparseVectorStorageType

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-sparsevectorstoragetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SparseVectorStorageType",
  "title": "SparseVectorStorageType",
  "oneOf": [
    {
      "description": "Storage on disk (rocksdb storage)",
      "type": "string",
      "enum": [
        "on_disk"
      ]
    },
    {
      "description": "Storage in memory maps (gridstore storage)",
      "type": "string",
      "enum": [
        "mmap"
      ]
    }
  ]
}