Sitecore : how to update the Solr index item/document through web admin panel
I have covered the basic solr search queries in my
previous post Link
previous post Link
).
If developer wants to update the single document/item from the
solr index then question comes in the mind how?
solr index then question comes in the mind how?
There are two ways to update single item from solr index:
- Through code via API or
- Through Solr web Admin panel
Check the second way:
Update Request
handler
handler
Update request
handler is responsible for update operation in solr index
handler is responsible for update operation in solr index
- Open solr web admin:
- Go to Documents in left panel
- Select /update in request-handler
- Select document type as JSON
- Write update query in below format(primary
field name with other field-value) - Submit document
Check the
result in right panel as below:
result in right panel as below:
Thanks Guys,
Happy Solr/Sitecore