Thank you Bill and Ludovic!
I changed field type to text instead of string and now it is working
perfectly!
Thank you very much for such a quick help!!!
--
View this message in context:
http://lucene.472066.n3.nabble.com/Problem-with-making-Solr-query-tp3228877p3228941.html
Sent from the Solr -
Hi,
if you are using the schema from the Solr example, the fields with the type
"string" are not analyzed.
You should find a "text" field type or you can create one like shown in this
example:
http://svn.apache.org/viewvc/lucene/dev/trunk/solr/example/solr/conf/schema.xml?view=markup
take a look
String does no manipulation. You might need to switch the fieldtype. Also make
sure your default field is title or add title:implementation in your search.
Bill Bell
Sent from mobile
On Aug 5, 2011, at 8:43 AM, dhryvastov wrote:
> Hi -
>
> I am new to Solr and Lucene and I have started to r
One more note:
If I send the following url http://localhost:8983/solr/db/select/?q=*:* then
I see the first 10 records and numFound="26" as expected.
Tried to do the same using Java API, the results is identical...
--
View this message in context:
http://lucene.472066.n3.nabble.com/Problem-with