On Jun 28, 2010, at 2:00 PM, Ahmet Arslan wrote: >> 1) I can get my docs in the index, but when I search, it >> returns the entire document. I'd love to have it only >> return the line (or two) around the search term. > > Solr can generate Google-like snippets as you describe. > http://wiki.apache.org/solr/HighlightingParameters
Here's how I commit my documents: J=0; for i in `find . -name \*.txt`; do (( J++ )) curl "http://localhost:8983/solr/update/extract?literal.id=doc$J" -F "myfi...@$i"; done; echo "------------- Committing" curl "http://localhost:8983/solr/update/extract?commit=true" Then, I try to query using http://localhost:8983/solr/select?rows=10&start=0&fl=*,score&hl=true&q=testing but I only get back the document ID rather than the snippet: <doc> <float name="score">0.05030759</float> <arr name="content_type"> <str>text/plain</str> </arr> <str name="id">doc16</str> </doc> I'm using the schema.xml from the "lucid imagination: Indexing text and html files" tutorial. -Pete