ISolrOperations.GetPhraseAnalysisByFieldType

Fore Syntax

GetPhraseAnalysisByFieldType(Core: ISolrSearchEngineCore; FieldType: String; Phrase: String): Variant;

Fore.NET Syntax

GetPhraseAnalysisByFieldType(Core: Prognoz.Platform.Interop.BISearch.ISolrSearchEngineCore; FieldType: String; Phrase: String): Object;

Parameters

Core. The Solr instance which is under work.

FieldType. Type of the field used for analyses.

Phrase. Phrase under analysis.

Description

The GetPhraseAnalysisByFieldType method analyses the specified phrase by field type and returns array containing a set of synonymous words.

Comments

List of the Solr instances can be get in the ISolrSearchEngineService.Cores property.

Fore Example

It is supposed that the repository is set to work with search service based on Apache Solr. Connect the BISearch, Fore, Metabase system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    SharedParams: ISharedParams;
    SearchEngine: ISolrSearchEngineService;
    Core: ISolrSearchEngineCore;
    Operations: ISolrOperations;
    Result, v: Variant;
    Arr: Array;
Begin
    MB := MetabaseClass.Active;
    SharedParams := MB.SpecialObject(MetabaseSpecialObject.SharedParams).Bind As ISharedParams;
    SearchEngine := SharedParams.SearchEngine As ISolrSearchEngineService;
    Core := SearchEngine.Cores.Item(0);
    Operations := New SolrOperations.Create;
    Result := Operations.GetPhraseAnalysisByFieldType(Core, "synonym_searcher""Russian Federation");
    Arr := Result As Array;
    For Each v In arr Do
        Debug.WriteLine(v);
    End For;
End Sub UserProc;

On executing the example the specified phrase will be analyzed by the field with the synonym_searcher value. The received synonymous words will be displayed to the development environment console.

Fore.NET Example

The requirements and result of the Fore.NET example execution match with those in the Fore example.

Imports Prognoz.Platform.Interop.BISearch;
Imports Prognoz.Platform.Interop.KeFore;
Imports Prognoz.Platform.Interop.Metabase;

Public Shared Sub Main(Params: StartParams);
Var
    MB: IMetabase;
    SharedParams: ISharedParams;
    SearchEngine: ISolrSearchEngineService;
    Core: ISolrSearchEngineCore;
    Operations: ISolrOperations = New SolrOperationsClass();
    Result, v: Object;
    Arr: Array;
Begin
    MB := Params.Metabase;
    SharedParams := MB.SpecialObject[MetabaseSpecialObject.msoSharedParams].Bind() As ISharedParams;
    SearchEngine := SharedParams.SearchEngine As ISolrSearchEngineService;
    Core := SearchEngine.Cores.Item[0];
    Result := Operations.GetPhraseAnalysisByFieldType(Core, "synonym_searcher""Russian Federation");
    Arr := Result As Array;
    For Each v In arr Do
        System.Diagnostics.Debug.WriteLine(v);
    End For;
End Sub;

See also:

ISolrOperations