How to configure /select handler ?

2011-11-23 Thread neuron005
Another newbie question here Browse handler works perfect. Now I want to configure my /select handler so that I perform ajax-solr on it. How to perform it. The website https://github.com/evolvingweb/ajax-solr https://github.com/evolvingweb/ajax-solr explains how to perform it. I

Re: Solr Search for misspelled search term

2011-11-23 Thread neuron005
Do you mean stemming? For misspelled words you will have to edit your dictionary (stopwords.txt) i think where you can set solution for misspelled words! Hope So :) -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Search-for-misspelled-search-term-tp3529961p3530504.html

Re: Can files be faceted based on their size ?

2011-11-22 Thread neuron005
Thanks for replying I tried using Trie types for faceting solr but that did not solve the problem. If I use Trie types(for e.g. I used tlong)...it shows schema mismatch error as in FileListEntityProcessor api , fileSize has been defined of type string. That means we can not apply facet.range on

Re: Can files be faceted based on their size ?

2011-11-19 Thread neuron005
But sir fileSize is of type string, how will it compare? -- View this message in context: http://lucene.472066.n3.nabble.com/Can-files-be-faceted-based-on-their-size-tp3518393p3520569.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: delta-import of rich documents like word and pdf files!

2011-11-18 Thread neuron005
When I set my fileSize of type string. It shows error as I have posted above. Then I changed it to slong and results was severe..here is log 18 Nov, 2011 3:00:54 PM org.apache.solr.response.BinaryResponseWriter$Resolver getDoc WARNING: Error reading a field from document : SolrDocument[{}]

Re: delta-import of rich documents like word and pdf files!

2011-11-17 Thread neuron005
Thank you for your replies guys.that helped a lot. Thanks iorixxx that was the command that worked out. I also tried my solr with mysql and that worked too. Congo! :) Now, I want to index my files according to their size and facet them according to their size ranges. I know that

Re: delta-import of rich documents like word and pdf files!

2011-11-17 Thread neuron005
Thanks for your reply, I performed these steps. in data-config.xml : entity name=f processor=FileListEntityProcessor ... field column=fileSize name=fileSize/ /entity in schema.xml : field name=fileSize type=string indexed=true stored=true required=false/

Re: delta-import of rich documents like word and pdf files!

2011-11-17 Thread neuron005
And also I set my fileSize of type long. String will not work I think ! Size can not be a string...it shows error on using string as type. -- View this message in context: http://lucene.472066.n3.nabble.com/delta-import-of-rich-documents-like-word-and-pdf-files-tp3502039p3515505.html Sent from

Re: delta-import of rich documents like word and pdf files!

2011-11-17 Thread neuron005
I ran this command and can see size of my files http://localhost:8080/solr/select?q=userf.fileSize.facet.range.start=100 Great thanks...string worked...i dont know why that did not work last time But when I do that in browse section..following output i saw in my logs SEVERE: Exception during

Re: delta-import of rich documents like word and pdf files!

2011-11-17 Thread neuron005
Sorry for disturbing you allactually I had to add plong instead of type string. My problem is solved Be ready for new thread CHEERS -- View this message in context: http://lucene.472066.n3.nabble.com/delta-import-of-rich-documents-like-word-and-pdf-files-tp3502039p3515711.html Sent from

Re: delta-import of rich documents like word and pdf files!

2011-11-14 Thread neuron005
Thanks for your reply...my data-config.xml is dataConfig dataSource type=BinFileDataSource name=bin/ document entity name=f pk=id processor=FileListEntityProcessor recursive=true rootEntity=false dataSource=null baseDir=/var/data/solr

Re: delta-import of rich documents like word and pdf files!

2011-11-13 Thread neuron005
Thanks for your reply Mr. Erick All I want to do is that I have indexed some of my pdf files and doc files. Now, any changes I make to them, I want a delta-import(incremental) so that I do not have to re index whole document by full import . Only changes made to these documents should get updated.

Re: delta-import of rich documents like word and pdf files!

2011-11-13 Thread neuron005
and changes are : file content, maybe I change its author and headers -- View this message in context: http://lucene.472066.n3.nabble.com/delta-import-of-rich-documents-like-word-and-pdf-files-tp3502039p3505951.html Sent from the Solr - User mailing list archive at Nabble.com.