IndexKind Class
Specifies the index kind of index specs.
- Inheritance
-
builtins.objectIndexKind
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'
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python