Hi Team,

Problem: Unable to get autosuggestion for zip code having '-'.

We are using the context field as part of autosuggestion search.
when we try with context search, we are not getting results for zip code having 
'-', ex:"92240-3064".
Hence we did following the change in manager-schema and solrConfig

In Managed-scheme this changes we are added.
<fieldType name="autosuggestion_search" class="solr.TextField">
    <analyzer type="index">
      <tokenizer class="solr.KeywordTokenizerFactory"/>
    <filter class="solr.NGramFilterFactory" maxGramSize="15" minGramSize="5"/>
    </analyzer>
    <analyzer type="query">
      <tokenizer class="solr.PathHierarchyTokenizerFactory" delimiter="/"/>
    <filter class="solr.NGramFilterFactory" maxGramSize="15" minGramSize="5"/>
    </analyzer>
  </fieldType>

Created copy field for Zip code in managed-scheme
  <field name="zip-autosuggest" type="autosuggestion_search" indexed="true" 
stored="false" multiValued="true" />
  <copyField source="zipcode" dest="zip-autosuggest" docValues="true" />

Added this line for suggester in solrconfig.xml
 <str name="contextField">zip-autosuggest</str>

 sample example:

 <lst name="suggester">
  <str name="name">OfficeName</str>
  <str name="field">officeName</str>
  <str name="weightField">practiceLocationNumber</str>
 <str name="contextField">zip-autosuggest</str>
  <str name="lookupImpl">AnalyzingInfixLookupFactory</str>
  <str name="indexPath">officeName_suggester_infix_dir</str>
  <str name="dictionaryImpl">DocumentDictionaryFactory</str>
  <str name="payloadField">practiceLocationNumber</str>
  <str name="suggestAnalyzerFieldType">lowercase</str>
  <str name="storeDir">officeName_provider_suggestor_dictionary</str>
  <str name="fieldType">string</str>
 </lst>

we ran the reindexing without reloaded data. we are not getting the suggestion 
for zip code having "-".

can you please suggest the solution for it.


Thanks

Nareshkumar



::DISCLAIMER::
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
The contents of this e-mail and any attachment(s) are confidential and intended 
for the named recipient(s) only. E-mail transmission is not guaranteed to be 
secure or error-free as information could be intercepted, corrupted, lost, 
destroyed, arrive late or incomplete, or may contain viruses in transmission. 
The e mail and its contents (with or without referred errors) shall therefore 
not attach any liability on the originator or HCL or its affiliates. Views or 
opinions, if any, presented in this email are solely those of the author and 
may not necessarily reflect the views or opinions of HCL or its affiliates. Any 
form of reproduction, dissemination, copying, disclosure, modification, 
distribution and / or publication of this message without the prior written 
consent of authorized representative of HCL is strictly prohibited. If you have 
received this email in error please delete it and notify the sender 
immediately. Before opening any email and/or attachments, please check them for 
viruses and other defects.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Reply via email to