Hello Solr-users,
   I am trying to index xml files which have the following tags: (I am
using Solr 3.5 on Tomcat)

<DOC>
<theta1>0.98</theta_1>
<theta2>0.767</theta_2>
.....
..
..
..
<thetaN>0.2873</thetaN>
</DOC>

The numbers after "theta" are not a continuous sequence and I do not know
how many such tags are there. I thought this was a good candidate for
dynamic fields and have the following schema for those tags:
   <dynamicField name="theta*"  type="double" indexed="true"
 stored="true"/>
Is this correct? If so, what should I use in the data-config.xml file to
index these tags?

When I try the admin feature in the browser and query *:* , I don't see the
theta fields in the response.

If not, is dynamicFields a wrong choice? Is there another way of indexing
these fields?

Thanks in advance,
Rakesh Varna

Reply via email to