Re: document indexing

2013-06-12 Thread sodoo
Thank you for quick reply. I have solve the problem. -- View this message in context: http://lucene.472066.n3.nabble.com/document-indexing-tp3241832p4070116.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: document indexing

2013-06-12 Thread Erick Erickson
Questions: What does your Solr admin page say? Did you commit after you indexed the doc? What is your evidence that a search fails? You might review: http://wiki.apache.org/solr/UsingMailingLists Best Erick On Wed, Jun 12, 2013 at 5:16 AM, sodoo wrote: > Hi all, > > I am beginner and i try to

Re: document indexing

2013-06-12 Thread sodoo
Hi all, I am beginner and i try to index pdf, docx, txt files. How I can I index these format files? I have installed solr server in /opt/solr Also I have created "documents" directory. Then I copied index files in /opt/solr/documents. I tried to index below command. Originally almost indexed. I

Re: document indexing

2011-08-10 Thread lee carroll
With the first option you can be page specific in your search results and searches. Field collapsing/grouping will help with your normalisation issue. (what you have listed is different to what I listed you don't have a unique key) Option 2 means you loose any ability to reference page, but as you

Re: document indexing

2011-08-10 Thread directorscott
Could you please tell me schema.xml "fields" tag content for such case? Currently index data is something like this: PageID BookID Text 1 1"some text" 2 1"some text" 3 1"some text" 4 1"some text" 5 2"some text" 6

Re: document indexing

2011-08-10 Thread lee carroll
It really does depend upon what you want to do in your app but from the info given I'd go for denormalizing by repeating the least number of values. So in your case that would be book PageID+BookID(uniqueKey), pageID, PageVal1, PageValn, BookID, BookName On 10 August 2011 09:46, directorscott