If your text field is not stored, then it won't be available in
results. That's the likely explanation. Seems like all is well.
Erik
On Mar 24, 2009, at 11:34 PM, Chris Muktar wrote:
Fantastic thank you!
I'm executing this:
curl -F "te...@zheng.doc" -F 'commit=true'
http://localhost:8983/solr/update/extract?ext.def.fl=text
\&ext.literal.id=2
however performing the query
http://localhost:8983/solr/select?q=id:2
produces the output but without a text field. I'm not sure if it's
being
extracted & indexed correctly. The commit is going through though.
This is
using the example schema. Any thoughts? XML response follows...
<response>
-
<lst name="responseHeader">
<int name="status">0</int>
<int name="QTime">2</int>
-
<lst name="params">
<str name="q">id:2</str>
</lst>
</lst>
-
<result name="response" numFound="1" start="0">
-
<doc>
<str name="id">2</str>
<int name="popularity">0</int>
<str name="sku">2</str>
<date name="timestamp">2009-03-24T22:27:00.714Z</date>
</doc>
</result>
</response>