Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to insert a value into a boolean field in solr by passing it as a field in a doc, thus:

<add>
<doc>
<field name="WouldBuySameModelAgain">value-here</field>
</doc>
</add>

The field definition in schema.xml is:

<field name="WouldBuySameModelAgain" type="boolean" index="false" stored="true" required="false" />

I haven't been able to find any documentation on what value should be used where it says "value-here" in my example. I have tried true & false, True & False, TRUE & FALSE, 1 & 0 all to no avail - there are still no documents in my index with a value in the boolean field. All of my non-boolean fields with stored="true" are getting values.

All suggestions welcomed.

share|improve this question

1 Answer

up vote 5 down vote accepted

The answer is "true" or "false", doesn't appear to be case sensitive. For example:

<field name="WouldBuySameModelAgain">true</field>

An error elsewhere in my app was putting an empty string in where I was expecting a value.

share|improve this answer
You can accept your own answer and get 15 points. Thanks for sharing your find! – shellter May 19 '11 at 17:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.