New-FASTSearchMetadataFullTextIndexMapping
建立從 Managed 屬性到全文檢索索引的新對應。
Syntax
New-FASTSearchMetadataFullTextIndexMapping
-FullTextIndex <FullTextIndex>
-Level <Int32>
-ManagedProperty <ManagedProperty>
[<CommonParameters>]
Description
此 Cmdlet 會將 Managed 屬性的內容對應至全文檢索索引,方法是將 Managed 屬性對應至全文檢索索引。 對應僅適用于新內容;現有的內容必須重新饋送,才能出現在這個全文檢索索引中。
Managed 屬性會依稱為重要性層級的概念排序。 如果查詢字詞的相符檔數目大於使用中排名設定檔的 StopWordThreshold,則Microsoft FAST Search Server 2010 for SharePoint系統會重試查詢,將搜尋的 Managed 屬性限制為從較高重要性層級搜尋的屬性。
重要性層級 1 (查詢中將使用的第一個層級) 包含來自所有層級 1 和更新版本的 Managed 屬性。 重要性層級 2 包含層級 2 和更新。 最大的層級是 7。
此程序稱為鑽研。 請參閱 Set-FASTSearchMetadataRankProfile,以取得 StopWordThreshold 的詳細資訊。
如需 FAST Search Server 2010 for SharePoint Cmdlet 的許可權和最新資訊,請參閱線上檔 (https://go.microsoft.com/fwlink/?LinkId=163227) 。
範例
--------------- 範例 1----------------- (適用於 SharePoint 2010 的 FAST Server)
C:\PS>$title = Get-FASTSearchMetadataManagedProperty -name title
$fulltextindex = Get-FASTSearchMetadataFullTextIndex -Name thirdfulltextindex
New-FASTSearchMetadataFullTextIndexMapping -ManagedProperty $title -FullTextIndex $fulltextindex -Level 3
本範例會將名為 「title」 的 Managed 屬性對應至層級 3 上名為 「thirdfulltextindex」 的全文檢索索引。
進行此對應之後,必須重新饋送內容以填入全文檢索索引。
參數
-FullTextIndex
要加入對應的全文檢索索引。
Type: | FullTextIndex |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |
-Level
這個 Managed 屬性的重要性層級。 允許的值為 1 到 7。
Type: | Int32 |
Aliases: | ImportanceLevel, L |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |
-ManagedProperty
要對應至全文檢索索引的 Managed 屬性。
Type: | ManagedProperty |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |