Quantcast
Channel: Update document field with solrj - Stack Overflow
Browsing all 6 articles
Browse latest View live

Answer by Andrea for Update document field with solrj

This post should be the correct answer to your question (if you are using SOLR 4.x)

View Article



Answer by denizdurmus for Update document field with solrj

For Solr 4.0 you are able to update a single field on a document, but that version is ALPHA, if you are concerned. But for the update thingy, it is only possible by CURL I think, I didnt find any way...

View Article

Answer by Brett Thomas for Update document field with solrj

You have two options:As stated in other answers, you can query for the original document, update the field, and then re-save which will overwrite the original document with the new values.Your other...

View Article

Answer by Paige Cook for Update document field with solrj

The only option I know of would be to query the full document (all fields using &fl=* parameter) into a local construct with solrj, update the appropriate field(s) and them submit the entire...

View Article

Answer by Jayendra for Update document field with solrj

Nope there is no way to update specific field for an document in Solr, nor through any of its Client apis.EDIT :- With Solr 4.0 it it possible to Partially update the documents with certain fields.

View Article


Update document field with solrj

I want to edit document filed in solr,for example edit the author name,so i use the following code in solrj:params.set("literal.author","anaconda")but the author multivalued="true" in schema and...

View Article
Browsing all 6 articles
Browse latest View live




Latest Images