I'm not sure how your config file is setup, but I know that the way we do 
multi-token synonyms is to have the sow (split on whitespace) parameter set to 
False while using the edismax parser. I'm not sure if this would work with 
PhraseQueries , but it might be worth a try! 

In our config file we do something like this: 

<requestHandler name="/w3search_test" class="solr.SearchHandler">
        <lst name="defaults">
            <str name="defType">edismax</str>
            <float name="tie">1.0</float>
            <str name="echoParams">explicit</str>
            <int name="rows">100</int>
            <str name="df">content_en</str>
            <str name="wt">w3json_en</str>
            <str name="sow">false</str>
        </lst>
 </requestHandler>

You can read a bit about the parameter here: 
https://opensourceconnections.com/blog/2018/02/20/edismax-and-multiterm-synonyms-oddities/
 

Best,
Audrey

-- 
Audrey Lorberfeld
Data Scientist, w3 Search
IBM
audrey.lorberf...@ibm.com
 

On 10/15/19, 5:50 AM, "Shubham Goswami" <shubham.gosw...@hotwax.co> wrote:

    Hi kshitij
    
    Thanks for the reply!
    I tried to debug it and found that raw query(black company) has parsed as
    two separate queries
    black and company and returning the results based on black query instead of
    this it should have
    got parsed as a single phrase query like("black company") because i am using
    autoGeneratedPhraseQuery.
    Do you have any idea about this please correct me if i am wrong.
    
    Thanks
    Shubham
    
    On Tue, Oct 15, 2019 at 1:58 PM kshitij tyagi <kshitij.shopcl...@gmail.com>
    wrote:
    
    > Hi,
    >
    > Try debugging your solr query and understand how it gets parsed. Try using
    > "debug=true" for the same
    >
    > On Tue, Oct 15, 2019 at 12:58 PM Shubham Goswami <
    > shubham.gosw...@hotwax.co>
    > wrote:
    >
    > > *Hi all,*
    > >
    > > I am a beginner to solr framework and I am trying to implement
    > > *autoGeneratePhraseQueries* property in a fieldtype of
    > type=text_general, i
    > > kept the property value as true and restarted the solr server but still
    > it
    > > is not taking my two words query like(Black company) as a phrase without
    > > double quotes and returning the results only for Black.
    > >
    > >          Can somebody please help me to understand what am i missing ?
    > > Following is my Schema.xml file code and i am using solr 7.5 version.
    > > <fieldType name="text_general" class="solr.TextField"
    > > positionIncrementGap="100" multiValued="true"
    > > autoGeneratePhraseQueries="true">
    > >     <analyzer type="index">
    > >       <tokenizer class="solr.StandardTokenizerFactory"/>=
    > >       <filter class="solr.StopFilterFactory" words="stopwords.txt"
    > > ignoreCase="true"/>
    > >       <filter class="solr.LowerCaseFilterFactory"/>
    > >     </analyzer>
    > >     <analyzer type="query">
    > >       <tokenizer class="solr.StandardTokenizerFactory"/>
    > >       <filter class="solr.StopFilterFactory" words="stopwords.txt"
    > > ignoreCase="true"/>
    > >       <filter class="solr.SynonymGraphFilterFactory" expand="true"
    > > ignoreCase="true" synonyms="synonyms.txt"/>
    > >       <filter class="solr.LowerCaseFilterFactory"/>
    > >     </analyzer>
    > >   </fieldType>
    > >
    > >
    > > --
    > > *Thanks & Regards*
    > > Shubham Goswami
    > > Enterprise Software Engineer
    > > *HotWax Systems*
    > > *Enterprise open source experts*
    > > cell: +91-7803886288
    > > office: 0731-409-3684
    > > 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.hotwaxsystems.com&d=DwIBaQ&c=jf_iaSHvJObTbx-siA1ZOg&r=_8ViuZIeSRdQjONA8yHWPZIBlhj291HU3JpNIx5a55M&m=Zi9beGF58BzJUNUdCkeW0pwliKwq9vdTSh0V_lR0734&s=FhSkJBcmYw_bfHgq1enzuYQeOZwKHzlP9h4VwTZSL5E&e=
 
    > >
    >
    
    
    -- 
    *Thanks & Regards*
    Shubham Goswami
    Enterprise Software Engineer
    *HotWax Systems*
    *Enterprise open source experts*
    cell: +91-7803886288
    office: 0731-409-3684
    
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.hotwaxsystems.com&d=DwIBaQ&c=jf_iaSHvJObTbx-siA1ZOg&r=_8ViuZIeSRdQjONA8yHWPZIBlhj291HU3JpNIx5a55M&m=Zi9beGF58BzJUNUdCkeW0pwliKwq9vdTSh0V_lR0734&s=FhSkJBcmYw_bfHgq1enzuYQeOZwKHzlP9h4VwTZSL5E&e=
 
    

Reply via email to