Set-FASTSearchMetadataFullTextIndex

Updates the properties of a full text index.

Syntax

Set-FASTSearchMetadataFullTextIndex
   -FullTextIndex <FullTextIndex>
   [-Description <String>]
   [-StemmingEnabled <Boolean>]
   [<CommonParameters>]
Set-FASTSearchMetadataFullTextIndex
   -Name <String>
   [-Description <String>]
   [-StemmingEnabled <Boolean>]
   [<CommonParameters>]

Description

This cmdlet enables/disables stemming and changes the description of a full text index.

Stemming is the process of reducing words to their base form or expanding to all known forms to increase recall. Whether stemming is done through reduction or expansion depends on the language in which the content is written.

For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (https://go.microsoft.com/fwlink/?LinkId=163227).

Examples

---------------EXAMPLE 1----------------- (FAST Server for SharePoint 2010)

Set-FASTSearchMetadataFullTextIndex -name content -description "Central content repository"

This example updates the description of the existing full text index named "content".

---------------EXAMPLE 2----------------- (FAST Server for SharePoint 2010)

Set-FASTSearchMetadataFullTextIndex -Name content -StemmingEnabled 1

This example enables stemming on the full text index named "content". The content of the full text index must be recrawled/re-fed for this change to take effect.

Parameters

-Description

A new description to use for the full text index.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010

-FullTextIndex

An object representing the full text index to be updated.

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

-Name

Name of the full text index to be updated.

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

-StemmingEnabled

Enables or disables stemming for this full text index.

Type:Boolean
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010