Set-FASTSearchMetadataFullTextIndexMapping

기존 전체 텍스트 인덱스 매핑의 중요도 수준을 업데이트합니다.

Syntax

Set-FASTSearchMetadataFullTextIndexMapping
   -Level <Int32>
   -Mapping <FullTextIndexMapping>
   [<CommonParameters>]

Description

이 cmdlet은 기존 전체 텍스트 인덱스 매핑의 중요도 수준을 변경합니다.

관리 속성은 중요도 수준에 따라 매핑됩니다. 쿼리 용어의 일치하는 문서 수가 사용 중인 순위 프로필의 StopWordThreshold보다 높은 경우 Microsoft FAST Search Server 2010 for SharePoint 시스템은 이전에 시도한 것보다 높은 중요도 수준에 속하는 관리 속성으로 검색을 제한하면서 쿼리를 다시 시도합니다.

쿼리 용어 개수가 StopWordThreshold보다 적은 수준을 찾을 때까지 이 프로세스가 반복됩니다.

중요도 수준 1(사용되는 첫 번째 수준)은 1 이상의 모든 수준을 포함합니다. 중요도 수준 2는 2 이상의 모든 수준을 포함합니다. 최대 수준은 7입니다.

이 프로세스를 드릴이라고 합니다. StopWordThreshold에 대한 자세한 내용은 Set-FASTSearchMetadataRankProfile을 참고하십시오.

SharePoint cmdlet용 FAST Search Server 2010에 대한 권한 및 최신 정보는 온라인 설명서(https://go.microsoft.com/fwlink/?LinkId=163227)를 참조하세요.

예제

---------------예제 1-----------------(Microsoft FAST Search Server 2010 for SharePoint)

C:\PS>$content = get-fastsearchmetadatafulltextindex -name content
$sitetitle = Get-FASTSearchMetadataManagedProperty -name sitetitle
$sitetitle_fulltextindexmapping = Get-FASTSearchMetadataFullTextIndexMapping -managedproperty $sitetitle -fulltextindex $content
Set-FASTSearchMetadataFullTextIndexMapping -mapping $sitetitle_fulltextindexmapping -level 7

이 예제에서는 "SiteTitle"이라는 관리 속성에 대한 전체 텍스트 인덱스 매핑을 조회하고 중요도 수준 1에서 중요도 수준 7로 이동합니다.

예제에서는 먼저 "content"에 대한 전체 텍스트 인덱스 개체와 "sitetitle"에 대한 관리 속성 개체를 검색합니다. 그런 다음 이러한 개체를 사용하여 Get-FASTSearchMetadataFullTextIndexMapping cmdlet을 통해 전체 텍스트 인덱스 매핑 개체를 가져옵니다. 마지막으로 Set-FASTSearchMetadataFullTextIndexMapping cmdlet을 호출하여 수준을 업데이트합니다.

매개 변수

-Level

이 매핑에 사용할 중요도 수준입니다. 유효한 값은 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

-Mapping

업데이트할 전체 텍스트 인덱스 개체입니다.

Type:FullTextIndexMapping
Aliases:FullTextIndexMapping, M
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010