You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i realized the search is not finding some documents.
i found out that the _text_ field does not contains the word i am looking for, but the field content_txt does contain it.
i got the search finally to work by changing this line: https://github.com/opensemanticsearch/solr-php-ui/blob/master/src/index.php#L930 $additionalParameters['qf'] = '_text_^3 title_txt^5';
to $additionalParameters['qf'] = '_text_^3 title_txt^5 content_text^3';
Does it make sense?
Any better idea?
I did not find any documentation on the index fields.
is there any?
many thanks
The text was updated successfully, but these errors were encountered:
Hi,
i realized the search is not finding some documents.
i found out that the
_text_
field does not contains the word i am looking for, but the fieldcontent_txt
does contain it.i got the search finally to work by changing this line:
https://github.com/opensemanticsearch/solr-php-ui/blob/master/src/index.php#L930
$additionalParameters['qf'] = '_text_^3 title_txt^5';
to
$additionalParameters['qf'] = '_text_^3 title_txt^5 content_text^3';
Does it make sense?
Any better idea?
I did not find any documentation on the index fields.
is there any?
many thanks
The text was updated successfully, but these errors were encountered: