Hi,
Presently "OR" is the default operator for search in Solr. for e.g. If I am
searching for these 2 words with a space: abc xyz then it will return all
the records which has either abc or xyz or both. It means it is executing
query like abc or xyz.
But my requirement is that it should return o
Jeffrey Tiong wrote:
>
> Hi,
>
> I have a schema that has the following fields,
>
> publisher_name
> book_title
> year
> abstract
>
> Currently if I do a facet count when I have a query "q=abstract:philosophy
> AND publisher_name:publisher1" , it can give me results like below,
>
> abstract:phi
Why is this surprising? *Assuming* that the EnglishPorterFilterFactory
doesn't stem "clai" to "cla", this makes perfect sense. And since "clai"
isn't English in the first place.
Or am I missing something?
Have you looked at your index with Luke to see what actually gets placed
in it (i.e. whe
Hi,
Wondering if somebody could help me in understanding the following behavior :-
If I search on a text field with search query as "davi cla" then it does not
yields any search results however if I search for "davi clai" then it yields me
100+ results.
The field I am searching on is a text fi
Here is my query. I have a field called shared_count, that is an int value.
I want to give a boost based on the value of that field so the ones with
that results with a higher shared_count get boosted a bit.
http://127.0.0.1:8983/solr/select/?wt=json&rows=100&fl=*,score&fq=type:moment&q=kindle&
Hi,
I have a schema that has the following fields,
publisher_name
book_title
year
abstract
Currently if I do a facet count when I have a query "q=abstract:philosophy
AND publisher_name:publisher1" , it can give me results like below,
abstract:philosophy AND publisher_name:publisher1
70