As of today the SolrNet api doesn't offer atomic updates to be issued to a running Solr server. While the Solrnet api is supposed to offer this feature sometime in the future, the following alternative can be used in the interim.
1. Build a custom atomic update XML message:
(See: http://wiki.apache.org/solr/UpdateXmlMessages for more details)
2. Get hold of the connection object (via ServiceLocator):
3. Issue a call to Solr via the connection object:
Will be adding sample code snippets soon..
1. Build a custom atomic update XML message:
(See: http://wiki.apache.org/solr/UpdateXmlMessages for more details)
2. Get hold of the connection object (via ServiceLocator):
3. Issue a call to Solr via the connection object:
Will be adding sample code snippets soon..