I am a beginner in Solr, I have the following collection in my Soleserver indexed :
{
"id": "book5",
"title": [
"Five point someone"
],
"author": "Chetan Bagat",
"genere": "fantasy",
"description": [
"An iit guide"
],
"comments": [
"good",
"excellent"
],
"publications": [
"swapnapublications",
"pb publications"
]
}
and
{
"id": "book1",
"title": [
"nightatcallcenter"
],
"author": "ChetanBagat",
"genere": "fiction",
"description": [
"Aniitguide"
],
"comments": [
"good",
"excellent"
],
"publications": [
"bangalorepublications",
"aswinpublications"
]
}
my query q=Five +point+someone is failing
but my query
q=nightatcallcenter holds good why is it so? how can i make the first query work
My schema :
<fields>
<field name="id" type="text_general" indexed="true" stored="true" required="true" multiValued="false" />
<field name="title" type="text_general" indexed="true" stored="true" multiValued="true"/
<field name="genere" type="text_general" indexed="true" stored="true"/>
<field name="description" type="text_general" indexed="true" stored="true" multiValued="true"/>
<field name="comments" type="text_general" indexed="true" stored="true" multiValued="true"/>
<field name="author" type="text_general" indexed="true" stored="true" />
<field name="publications" type="text_general" indexed="true" stored="true" multiValued="true" />
<copyField source='*' dest='fulltext'/>
<field name='fulltext' type='text_general' multiValued='true '/>
</fields>