exsolr v0.0.1 Exsolr.Indexer
Provides functions that write documents to Solr
Summary
Functions
Commit changes into Solr
Function to delete all documents from the Solr Index
Delete the document with id id
from the solr index
Builds the delete_by_id request body
Functions
Function to delete all documents from the Solr Index
https://wiki.apache.org/solr/FAQ#How_can_I_delete_all_documents_from_my_index.3F
Delete the document with id id
from the solr index
From the Solr docs:
The JSON update format allows for a simple delete-by-id. The value of a delete can be an array which contains a list of zero or more specific document id’s (not a range) to be deleted. For example, a single document:
{ “delete”: { “id”: “myid” } }