Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Context incosistent in Solr and Verity for samefile

While trying to change server from CF8 to CF10, this happened

In CF8 this was the search code

<cfsearch 
    collection="test_#arguments.cabinetid#" 
    status="docsearchstatus" 
    name="docsearch" 
    criteria='#arguments.filter#' 
    suggestions="Always" 
    contextpassages="1" 
    contextbytes="300"
>

In CF10 this I am using this.

<cfsearch collection="test_#arguments.cabinetid#"
    status="docsearchstatus" 
    name="docsearch" 
    criteria='#lcase(arguments.filter)#*' 
    suggestions="Always" 
    contextPassages="1" 
    contextBytes="300"
>

Context filed in verity is longer and more descriptive. But while using solr most of times context is empty.
I tried making some changes on solr.xml and other solr config files. Here we add collections dynamically. So cannot fix this by changing the config files.

Have anyone come across this???

Result form verity searching Result form verity searching

Result from SOLR searching Result from SOLR searching

like image 999
rrk Avatar asked Sep 25 '13 10:09

rrk


1 Answers

Solr doesn't populate context passages by default like Verity did. You need to tweak the config as described here in order to switch it on.

(Quoted from Adobe's help site in entirety, because they keep changing their URLs.)

To highlight contents in the entire document, modify the solrconfig.xml and schema.xml files. These files are available in the following locations:

  • <Solr Home>/multicore/template/conf: Modify files in this location to apply the changes to all future Solr collections. <Collection
  • <Collection Directory>/conf: Modify files in this location to apply the changes only to a particular collection.
  1. Stop ColdFusion Add-on services.

  2. Replace the following section in the solrconfig.xml, in the <requestHandler name="standard" and <requestHandler name="dismax" sections.

    <str name="hl.fl">summary title</str>  
    

    with

    <str name="hl.fl">contents title</str>
    
  3. Replace the following section in the schema.xml

    <field name="contents" type="text" indexed="true" stored="false" required="false" multiValued="true" omitNorms="true"/>
    

    with

    <field name="contents" type="text" indexed="true" stored="true" required="false" multiValued="true" omitNorms="true"/>
    
  4. Restart Solr (i.e. the ColdFusion Add-on services).

  5. Reindex the collection.

Note: The modifications to solrconfig.xml and schema.xml will increase the index size.

Once these changes are made the context passages should start to display.

like image 156
Andrew Myers Avatar answered Sep 20 '22 11:09

Andrew Myers