你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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'