SOLR getting started, little help
I have managed to install SOLR and run the admin interface...
I have no clue on how to add indexes to SOLR...
I have a virtual server (wampserver) and in the SOLR tutorial they are referring to a TERMINAL all the time... I guess they 开发者_如何转开发mean the LINUX terminal or something, but how should I do the same thing in windows OS?
For instance, I can add xml files to the post.jar file to POST indexes to SOLR, but how do I do this?
ALSO, how do I go about if I want to add indexes to SOLR from MYSQL ?
Thanks
Please read the tutorial carefully, it shows exactly how to run post.jar to add documents:
user:~/solr/example/exampledocs$ java -jar post.jar solr.xml monitor.xml
The equivalent of the Linux terminal on Windows is the command prompt.
To import data from a RDBMS take a look at the DataImportHandler.
精彩评论