searchInfo
指定如何针对给定属性定义配置 Windows 搜索引擎。 如果未提供 searchInfo 元素,则属性不会包含在 Windows 搜索引擎中。 此元素已针对 Windows 7 进行了更改。
Windows 7 的语法
<!-- searchInfo for Windows 7-->
<xs:element name="searchInfo">
<xs:complexType>
<xs:attribute name="inInvertedIndex" type="xs:boolean" default="false"/>
<xs:attribute name="isColumn" type="xs:boolean" default="false"/>
<xs:attribute name="isColumnSparse" type="xs:boolean" default="true">
<xs:annotation>
<xs:documentation>
isColumnSparse: Default is true. If the property is multi-valued, this is always true.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="columnIndexType" default="OnDemand">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="NotIndexed"/>
<xs:enumeration value="OnDisk"/>
<xs:enumeration value="OnDiskAll"/>
<xs:enumeration value="OnDiskVector"/>
<xs:enumeration value="OnDemand"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="maxSize" type="xs:nonNegativeInteger" default="512"/>
<xs:attribute name="mnemonics" type="xs:string"/>
</xs:complexType>
</xs:element>
Windows Vista 的语法
<!-- searchInfo for Windows Vista-->
<xs:element name="searchInfo">
<xs:complexType>
<xs:attribute name="inInvertedIndex" type="xs:boolean" default="false"/>
<xs:attribute name="isColumn" type="xs:boolean" default="false"/>
<xs:attribute name="isColumnSparse" type="xs:boolean" default="true">
<xs:annotation>
<xs:documentation>
isColumnSparse: Default is true. If the property is multi-valued, this is always true.
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="columnIndexType" default="OnDemand">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="NotIndexed"/>
<xs:enumeration value="OnDisk"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="maxSize" type="xs:nonNegativeInteger" default="128"/>
</xs:complexType>
</xs:element>
元素信息
父元素 | 子元素 |
---|---|
propertyDescription | 无 |
特性
属性 | 说明 |
---|---|
inInvertedIndex | Public。 可选。 指示是否应将属性值存储在反转索引中。 这允许最终用户对此属性的值执行全文查询。 默认值为“false”。 |
isColumn | Public。 可选。 指示是否还应将 属性作为列存储在 Windows 搜索数据库中,以便独立软件供应商 (ISV) 可以创建基于谓词的查询 (例如“Select * Where ”System.Title“='qqq'”) 。 如果架构创建者希望使最终用户 (或开发人员) 基于属性创建基于谓词的查询,则需要将其设置为“true”。 默认值为“false”。 |
isColumnSparse | Public。 可选。 默认值为“true”。 如果该属性是多值属性,则此属性始终为“true”。 |
columnIndexType | Public。 可选。 若要优化排序和分组,Windows 搜索引擎可以为 isColumn=“true”的属性创建辅助索引。 仅当 inInvertedIndex 在 Windows Vista 中为“true”或 windows 7 中的 isColumn 为“true”时,此属性才有用。 如果属性往往按用户频繁排序,则应指定此属性。 Windows Vista 中的默认值为“NotIndexed”。 Windows 7 中的默认值为“OnDemand”。 以下值有效。
|
maxSize | Public。 可选。 Windows 搜索数据库中存储的某个属性允许的最大大小(以字节为单位)。 默认值为:
|
助记键 | Windows 7 及更高版本。 Public。 可选。 可用于在搜索查询中引用 属性的助记值列表。 列表以“|”字符分隔。 |