Re: searching within documents

2013-09-25 Thread Nutan
Okay thanks, I will surely read that page. Thanks a lot. On Wed, Sep 25, 2013 at 4:21 PM, Erick Erickson [via Lucene] < ml-node+s472066n4091910...@n3.nabble.com> wrote: > Because your "text" field type is completely broken. > > for instance, at indexing time > > lowercasing before using WordDeli

Re: searching within documents

2013-09-25 Thread Erick Erickson
Because your "text" field type is completely broken. for instance, at indexing time > lowercasing before using WordDelimiterFilterFactory means that one of the purposes of WDFF, breaking tokens up on upper/lower case transitions can't happen. Which you apparently intend since you have splitOnCaseC

RE: searching within documents

2013-09-24 Thread Nutan
Why does it happens that for few words it shows output and for few it does not? For example, 1) q=contents:Sushant numfound is 0 q=contents:sushant gives output 2) q=contents:acted numfound 0 q=contents:well gives output This is the document: 13 chetan worst boo

RE: searching within documents

2013-09-24 Thread Nutan
Okay thanks. -- View this message in context: http://lucene.472066.n3.nabble.com/searching-within-documents-tp4090173p4091705.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: searching within documents

2013-09-24 Thread Gupta, Abhinav
ts depends entirely on relevance (score) of document. Hope it helps. Thanks, Abhinav -Original Message- From: Nutan [mailto:nutanshinde1...@gmail.com] Sent: 24 September 2013 14:34 To: solr-user@lucene.apache.org Subject: Re: searching within documents First I indexed documents using &qu

Re: searching within documents

2013-09-24 Thread Gora Mohanty
On 24 September 2013 14:34, Nutan wrote: > First I indexed documents using "indexing xml files to solr(sending doc to > solr using xml file)" > Then I made changes to schema.xml ie. I added analyzer and tokenizer. > I then indexed some new documents using same procedure,now my searching with > spa

Re: searching within documents

2013-09-24 Thread Nutan
First I indexed documents using "indexing xml files to solr(sending doc to solr using xml file)" Then I made changes to schema.xml ie. I added analyzer and tokenizer. I then indexed some new documents using same procedure,now my searching with spaces works only for newly indexed files and not the i

Re: searching within documents

2013-09-21 Thread Nutan Shinde
And this works: localhost:8080/solr/select?q=title:solr this gives output as required doc, but localhost:8080/solr/select?q=contents:solr gives num found as 0 This is the new edited schema.xml : id On Sat, Sep 21, 2013 at 7:58 PM, Nutan wrote: > I have been trying t

Re: searching within documents

2013-09-21 Thread Nutan
I have been trying to resolve the problem of searching within doc,it wasnt working so I thought of installing solr on other system.I followed the same process->to install tomcat->create solr-home folder->solr.xml->then I get the homepage(admin)of solr and followed Solr cookbook for extracting handl

Re: searching within documents

2013-09-15 Thread Erick Erickson
Stop. Back up. Start from the beginning. Reiterating what Gora was saying, you're jumping into the middle of your problem. Start at the beginning. Have you been able to just do the example without changing anything else? I.e. are you sure you have a working installation under Tomcat? Don't try to

Re: searching within documents

2013-09-15 Thread Nutan
That is my whole schema.xml file. I did not define default and copy field.I am new to solr,never read about its need for full-text search.Can you please send me any link for configurations to search within documents.I did follow Solr cookbook 4. Thanks a lot. On Sun, Sep 15, 2013 at 5:39 PM, Gora

Re: searching within documents

2013-09-15 Thread Gora Mohanty
On 15 September 2013 17:20, Nutan wrote: > > this is my schema.xml : You do not provide nearly enough information for people to be able to help you. Is that the entirety of your schema.xml? If so, it is missing various important bits such as a and directives needed to make a full-text search w