Hi,

I have started practicing Solr recently and my understanding on the field
type properties "index=false", is that field is not searchable.

But when I execute the below query I got the results.

http://localhost:8494/solr/myfirstcore/select?q=cat%3Asoftware&wt=json&indent=true

configured in schema.xml :
---------------------------------------

<field name="cat" type="string" indexed="false" stored="true"
multiValued="false"/>


I have uploaded the below document:
----------------------------------------------------

<add>
<doc>
  <field name="id">SOLR1000</field>
  <field name="name">Solr, the Enterprise Search Server</field>
  <field name="manu">Apache Foundation</field>
  <field name="cat">software</field>
  <field name="features">Advanced Full-Text Search Capabilities using
Lucene</field>
  <field name="features">Optimized for High Volume Web Traffic</field>
  <field name="features">Standards Based Open Interfaces - XML and
HTTP</field>
  <field name="features">Comprehensive HTML Administration
Interfaces</field>
  <field name="features">Scalability - Efficient Replication to other Solr
Search Servers</field>
  <field name="features">Flexible and Adaptable with XML configuration and
Schema</field>
  <field name="features">Good unicode support: h&#xE9;llo (hello with an
accent over the e)</field>
  <field name="price">0.0</field>
  <field name="popularity">10</field>
  <field name="inStock">true</field>
  <field name="incubationdate_dt">2006-01-17T00:00:00.000Z</field>
</doc>
</add>

Regards,
santhosh

Reply via email to