Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Index with field productname.

I have following in the index.

  1. ".net framework"
  2. "microsoft .net framework programming"
  3. ".net framework 4.0 programming"
  4. "Microsoft programming"

If I put the query ".net framework" it should search 1st 3 items. If I put "Microsoft Programming" it should search 2 and 4. If only programming then last 3.

I have read dictionary,stemming, text analysis. but unable to do above.

What changes should I make in the schema and query to full-fill above.

Thanks a ton, Shrika

share|improve this question
post the fieldType you're using and the exact query you're running. – Mauricio Scheffer Jan 31 '11 at 21:07
yes a post of your schema for that field would help... – David Archer Jan 31 '11 at 21:21
Have you definitely set indexed=true on the field? If not, solr would look for exact matches – David Archer Jan 31 '11 at 21:24

1 Answer

A sample schema will certainly be helpful for people to diagnose your problem. When I have similar issues, one thing I tried is to use "Field Analysis" tool comes with Solr Admin tool. It'll show you how the query and value are transformed and if they match or not.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.