I use apache-solr-3.5.0 and i want make an something like : http://www.kaufda.de/Berlin

(Phrase suggestion)

I used the Suggester - (a flexible "autocomplete" component for Solr)

Like described on this article : http://css.dzone.com/news/solr-and-autocomplete-part-2

This is my solrconfig :

<searchComponent name="suggest" class="solr.SpellCheckComponent">
 <lst name="spellchecker">
  <str name="name">suggest</str>
  <str name="classname">org.apache.solr.spelling.suggest.Suggester</str>
  <str name="lookupImpl">org.apache.solr.spelling.suggest.tst.TSTLookup</str>
  <str name="field">name_autocomplete</str>
 </lst>
</searchComponent>

<requestHandler name="/suggest" class="org.apache.solr.handler.component.SearchHandler">
 <lst name="defaults">
  <str name="spellcheck">true</str>
  <str name="spellcheck.dictionary">suggest</str>
  <str name="spellcheck.count">10</str>
 </lst>
 <arr name="components">
  <str>suggest</str>
 </arr>
</requestHandler>

Shema.xml

<fieldType class="solr.TextField" name="text_auto">
 <analyzer>
  <tokenizer class="solr.KeywordTokenizerFactory"/>
  <filter class="solr.LowerCaseFilterFactory"/>
 </analyzer>
</fieldType>

<field name="id" type="string" indexed="true" stored="true" multiValued="false" required="true"/>
<field name="name" type="text" indexed="true" stored="true" multiValued="false" />
<field name="name_autocomplete" type="text_auto" indexed="true" stored="true" multiValued="false" />
<field name="description" type="text" indexed="true" stored="true" multiValued="false" />

<copyField source="name" dest="name_autocomplete" />

On my php code :

$solr = $this->getSolr();
$response = NULL;

if (!$solr) {
 return;
}

$params = array();
$params['spellcheck.build'] = 'true';
$params['spellcheck'] = 'true';
$params['qt'] = '';

$result = $solr->search( 'har', 0, 10, $params );

The result is an array without suggestion.

How can i use Suggester with php ?

Thank's in advance for help

Cheers

link|improve this question

0% accept rate
feedback

3 Answers

Did you try to do a test directly on solr? That would be best to see if the values are generated properly and then you can debug the PHP code.

You can see the values by accessing:

http://localhost:8983/solr/suggest?q=har&spellcheck=true&spellcheck.collate=true&spellcheck.build=true

You might need to change the port if you are not using the default configuration.

link|improve this answer
Hi, thanks for quick response, it works good but when i use this parameters in php i can't get this result – ZendMind Feb 16 at 12:04
Hi, i is this '$result = $solr->search( 'har', 0, 10, $params );' wrong ? is there another parameter for solr suggester ? – ZendMind Feb 17 at 11:14
I don't know what library you are using to interact with solr. You need to make sure it sends the write query. Check out this php.net/manual/en/solrquery.setquery.php – mazzucci Feb 17 at 11:50
Hi, i don't use the solr extension for PHP but i use Apache Solr 3.5.0. that can be downloaded from link – ZendMind Feb 17 at 12:01
feedback

Check out http://www.cominvent.com/2012/01/25/super-flexible-autocomplete-with-solr/ for an even more flexible suggester.

Also building dictionary (spellcheck.build=true) every time you ask for suggestion is not recommended.

link|improve this answer
Hi Klein, thank's for this very interessent link. i don't have problem with my solr but PHP parameters. – ZendMind Feb 21 at 20:56
feedback

After searching and with all your help, i found the solution.

The params are correct.

The url : http://localhost:8983/solr/suggest?q=har&spellcheck=true&spellcheck.collate=true&spellcheck.build=true give the good result

On my php code i added the qt param with the '/suggest' value

The new code

$solr = $this->getSolr();
$response = NULL;

if (!$solr) {
 return;
}

$params = array();
$params['spellcheck.build'] = 'true';
$params['spellcheck'] = 'true';
$params['qt'] = '/suggest';

$result = $solr->search( 'har', 0, 10, $params );

I appreciate your help,

Cheers

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.