Yes, I am. <entity name="x" processor="XPathEntityProcessor" forEach="/ROW" url="${f.fileAbsolutePath}" transformer="TemplateTransformer">
2010/11/8 Ahmet Arslan <iori...@yahoo.com> > Did you add transformer="TemplateTransformer" to your data-config.xml file? > > Also /solr/admin/dataimport.jsp is useful for debugging. > > --- On Mon, 11/8/10, Renato Wesenauer <renato.wesena...@gmail.com> wrote: > > > From: Renato Wesenauer <renato.wesena...@gmail.com> > > Subject: Re: Fixed value in dataimporthandler > > To: solr-user@lucene.apache.org > > Date: Monday, November 8, 2010, 10:50 PM > > Hi Ahmet Arslan, > > > > I'm using this in schema.xml: > > <field name="secao" type="cleannormalized_text" > > indexed="true" > > stored="true"/> > > <field name="indativo" type="boolean" indexed="true" > > stored="true"/> > > > > I'm using this in dataimporthandler: > > <field column="secao" xpath="/ROW/NomeSecaoMix" /> > > <field column="indativo" template="0" /> > > > > The indexing process work correctly, but it's happening > > something wrong with > > the results of queries. > > > > All queries with some field with 2 words or more, plus the > > field > > "indativo:true", it isn't returning any result. > > > > Example of queries: > > > > 1º) secao:"accessories for cars" AND indativo:true > > 2º) secao:"accessories for cars" AND indativo:false > > > > The first query returns 0 results, but there are 40.000 > > documents indexed > > with these fields. > > The second query returns 300.000 documents, but 300.000 is > > the total of > > documents for query secao:"celular e telefonia", the > > correct would be > > 260.000. > > > > Another example: > > 1º) secao:"toys" AND indativo:true > > 2º) secao:"toys" AND indativo:false > > > > In this example, the two queries work correctly. > > > > The problem happens with values with 2 words or more, plus > > the "indativo" > > field. > > > > Do you know what can be happening? > > > > Thank you, > > > > Renato F. Wesenauer > > > > > > 2010/11/8 Ahmet Arslan <iori...@yahoo.com> > > > > > > I need to indexing some fields with fixed value. > > > > > > > > Example: > > > > > > > > Schema.xml > > > > <field name="indativo" type="boolean" > > indexed="true" > > > > stored="true"/> > > > > > > > > I want to indexing the value 'false' fixed in > > the > > > > dataimporthandler. How do > > > > I do this? > > > > > > with TemplateTransformer > > > > > > > > > > http://wiki.apache.org/solr/DataImportHandlerFaq#How_would_I_insert_a_static_value_into_a_field_.3F > > > > > > > > > > > > > > > > > > > > >