I am indexing posts in SOLR with "name", "title", and "description" fields. I'd like to later be able to add a file (like a Word doc or a PDF) using Tika / the ExtractingRequestHandler.
I know I can add documents like so: (or through other interfaces)
curl 'http://localhost:8983/solr/update/extract?literal.id=post1&commit=true' -F "[email protected]"
But this replaces the correct post (post1 above) -- is there a parameter I can pass to have it only add to the record?