Enable stemming for a managed property by using Windows PowerShell (FAST Search Server 2010 for SharePoint)(informazioni in lingua inglese)
Aggiornato: 10 febbraio 2011
Suggerimento: |
---|
As a best practice, you should only enable stemming for a managed property if the property contains free text with inflected noun/adjective forms or user searches this property using inflectional variants. |
Verify that you meet the following minimum requirements: You are a member of the FASTSearchAdministrators local group on the computer where FAST Search Server 2010 for SharePoint is installed.
On the Start menu, click All Programs.
Click Microsoft FAST Search Server 2010 for SharePoint.
Click Microsoft FAST Search Server 2010 for SharePoint shell.
At the Windows PowerShell command prompt, type the following command(s):
$mp = Get-FASTSearchMetadataManagedProperty -name <ManagedProperty>
Where:
- <ManagedProperty> is the name of the managed property for which you want to enable stemming, for example DocComments.
Enable stemming:
$mp.StemmingEnabled=1
Update the managed property:
$mp.update()
Verify that stemming was enabled for the managed property:
$mp >> Name : DocComments >> Description : >> Type : Text >> Queryable : True >> StemmingEnabled : True >> RefinementEnabled : False >> MergeCrawledPfopertiesAuthorityWeight : False >> SubstringEnabled : False >> DeleteDisallowed : False >> MappingDisallowed : False >> MaxIndexSize : 1024 >> MaxResultSize : 64 >> DecimalPlaces : 3 >> SortableType : SortableDisabled >> SummaryType : Disabled
See also
Cronologia delle modifiche
Data | Descrizione | Motivo |
---|---|---|
10 febbraio 2011 |
2011/02/07 |
Aggiornamento contenuto |
16 settembre 2010 |
Pubblicazione iniziale |