IndexKind Class
Specifies the index kind of index specs.
Constructor
IndexKind()
Attributes
Hash
The index entries are hashed to serve point look up queries. Can be used to serve queries like: SELECT * FROM docs d WHERE d.prop = 5
Hash: Literal['Hash'] = 'Hash'
MultiHash
MultiHash
MultiHash: Literal['MultiHash'] = 'MultiHash'
Range
The index entries are ordered. Range indexes are optimized for inequality predicate queries with efficient range scans. Can be used to serve queries like: SELECT * FROM docs d WHERE d.prop > 5
Range: Literal['Range'] = 'Range'
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.
Azure SDK for Python