Get-FASTSearchMetadataFullTextIndexMapping
擷取 Managed 屬性與全文檢索索引之間的對應。
Syntax
Get-FASTSearchMetadataFullTextIndexMapping
[-FullTextIndex <FullTextIndex>]
[-ManagedProperty <ManagedProperty>]
[<CommonParameters>]
Description
此 Cmdlet 會擷取從 Managed 屬性到全文檢索索引的對應。 這些對應可控制每個全文檢索索引中包含哪些 Managed 屬性。
在 ManagedProperty 參數 (只以 Managed 屬性作為參數執行Get-FASTSearchMetadataFullTextIndexMapping,) 傳回包含 Managed 屬性之全文檢索索引的所有對應。
在 FullTextIndex 參數 (只以全文檢索索引作為參數執行Get-FASTSearchMetadataFullTextIndexMapping) 會從全文檢索索引中包含的 Managed 屬性傳回所有對應
使用 ManagedProperty 和 FullTextIndex 參數執行Get-FASTSearchMetadataFullTextIndexMapping,如果該物件存在於Microsoft FAST Search Server 2010 for SharePoint系統中,則會針對該精確對應傳回單一 FullTextIndexMappingImpl 物件。
如需 FAST Search Server 2010 for SharePoint Cmdlet 的許可權和最新資訊,請參閱線上檔 (https://go.microsoft.com/fwlink/?LinkId=163227) 。
範例
---------------範例 1-----------------
$fulltextindex = Get-FASTSearchMetadataFullTextIndex -name content
Get-FASTSearchMetadataFullTextIndexMapping -fulltextindex $fulltextindex| ForEach-Object {$_.ManagedProperty.Name}
此範例會擷取全文檢索索引「content」 的全文檢索索引對應。 然後逐一查看對應,並輸出全文檢索索引中包含的 Managed 屬性名稱。
---------------範例 2-----------------
$title = Get-FASTSearchMetadataManagedProperty -name title
Get-FASTSearchMetadataFullTextIndexMapping -managedproperty $title
此範例會擷取包含名為 「title」 之 Managed 屬性的所有全文檢索索引。
指定的 Managed 屬性會同時對應至 「content」 和 「thirdfulltextindex」,顯示 Managed 屬性可以包含的全文檢索索引數目沒有限制。
參數
-FullTextIndex
指定來擷取對應的全文檢索索引。
Type: | FullTextIndex |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |
-ManagedProperty
指定來擷取對應的 Managed 屬性。
Type: | ManagedProperty |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | FAST Server for SharePoint 2010 |