Re: Getting the Lucene Document ID for TermVectorComponent

2010-01-31 Thread MitchK
Hoss, this will have the same effect as I expected. Why wasn't that my first thought? :) Thank you! -- View this message in context: http://old.nabble.com/Getting-the-Lucene-Document-ID-for-TermVectorComponent-tp27382599p27390985.html Sent from the Solr - User mailing list archive at

Re: DataImportHandler problem - reading XML from a file

2010-01-31 Thread Noble Paul നോബിള്‍ नोब्ळ्
It clear that the xpaths provided won't fetch anything. because there is no data in those paths. what do you really wish to be indexed ? On Sun, Jan 31, 2010 at 10:30 AM, Lance Norskog goks...@gmail.com wrote: This DataImportHandler script does not find any documents in this HTML file. The

Re: replication setup

2010-01-31 Thread Noble Paul നോബിള്‍ नोब्ळ्
it is always recommended to paste your actual configuration and startup commands, instead of saying as described in wiki . On Tue, Jan 26, 2010 at 9:52 PM, Matthieu Labour matthieu_lab...@yahoo.com wrote: Hi I have set up replication following the wiki I downloaded the latest

Re: index of facet fields are not same as original string

2010-01-31 Thread Solr user
Hi Lance, I created a new fieldtype with solr.KeywordTokenizerFactory class in analyser and it worked for me. Thanks for all your help. Regards, Uma Lance Norskog-2 wrote: After you change the schema.xml file, you have to rebuild the index completely. At that point, g_number fields

Keyword on a particular facet

2010-01-31 Thread murali k
I have this keyword clothes , when a user searches this keyword, i want to apply a facet to get results only from a particular category (applying a facet query on a particular field) how can I acheive this ? -- View this message in context:

getting error when : in the query

2010-01-31 Thread Ranveer Kumar
Hi All, Facing problem when someone searching the string which carry special character : . For example: when querying by ipod:touch then throwing exception due to : . Jan 31, 2010 9:56:35 PM org.apache.solr.common.SolrException log SEVERE: org.apache.solr.common.SolrException: undefined field

Re: getting error when : in the query

2010-01-31 Thread NarasimhaRaju
Hi, you have to escape lucene special characters present in usersearch term before handing it over to QueryParser. for more info look at http://lucene.apache.org/java/2_9_1/queryparsersyntax.html#Escaping%20Special%20Characters “ There are only 10 types of people in this world:- Those who

Re: Field highlighting

2010-01-31 Thread Jan Høydahl / Cominvent
Did you solve this? If yes, what was wrong? If no, can you specify one concrete example document and a matching query which fails to highlight? -- Jan Høydahl - search architect Cominvent AS - www.cominvent.com On 7. jan. 2010, at 15.23, Xavier Schepler wrote: Erick Erickson a écrit : It's

Apache Hadoop Get Together Berlin March 2010

2010-01-31 Thread Isabel Drost
Hello, this is to announce the next Apache Hadoop Get Together Berlin: When: March 10th, 5p.m. Where: Newthinking store Berlin Talks scheduled so far: * Bram Smeets (JTeam/ Amsterdam): Spatial Search. * Dragan Milosevic (zanox/ Berlin:

Re: Looking for a Solr volunteer for www.comics.org

2010-01-31 Thread PlugTree
Henry, we at LineBee www.linebee.com are interested in helping you out. Drop me an email to dien...@linebee.com. http://www.linebee.com Henry Andrews wrote: Hi folks, I apologize if this isn't the right place to post this (alternate suggestions welcome alongside appropriate chastisement

Re: Field highlighting

2010-01-31 Thread Koji Sekiguchi
Jan Høydahl / Cominvent wrote: Did you solve this? If yes, what was wrong? If no, can you specify one concrete example document and a matching query which fails to highlight? -- Jan Høydahl - search architect Cominvent AS - www.cominvent.com On 7. jan. 2010, at 15.23, Xavier Schepler wrote:

Re: DataImportHandler problem - reading XML from a file

2010-01-31 Thread Lance Norskog
I would like to create a text string from the complete node tree, expressed in XML. So, /html/body would supply a string which starts: 'div id=header'. This this possible? In general, I'm attempting to take the HTML body node, and index it as a text string. Then, I can fetch that text body and

Re: getting error when : in the query

2010-01-31 Thread Ranveer Kumar
Hi thanks for reply. Is it possible to filter the special character. If I will allow then need to put \ before every special character, which will consume time and create performance issue. So I want to just filter those special char from user input query. However I would also like to know that,