tags:

views:

40

answers:

1

I am working in Solr and making some filter quires. One of my filter is consists of a space for eg:- "fq=listing_type:New home" But this is giving error. No result is comming out.

I also tried "fq=Listing_type:New+home" This was not giving error. But no results are comming out. Event there is some xml which have thse values.

Can anyone tell me where is my error?

Here you see the schema.xml

+1  A: 

Have you tried with fq=listing_type:"New home" ??? Why dont you index this field as "NewHome" ?

Juampa