Is there a way to write external file (containing external file field) for Solr via some API?
I tried to find into Solr docs but unable to find anything that help!!
Here is more details as requested.
I am working on a project where I have few details which are updated very frequently stored in external file, exactly same as this question: How can I read and write the external file field in solr?
We use the field for some function query and sorting purposes while performing search queries into Solr. This works fine.
However, this file needs to be on Solr Data directory. So it resides where Solr is installed. Now consider my case, where my main application is on a different Windows Server, communicating to the Solr via SolrNet. But my Solr instance is on a remote machine dedicated to Solr.
My problem is:
- How to transfer / write to this file to Solr Server from my asp.net application hosted on windows machine which is physically a separate machine.
- Is there any way / API built into Solr that allows to create / update this file from one of its API?
Any other suggestions on the same are always welcome.