Hey All,

I have gone through the tutorial and ran Solrj example code. It worked fine.

I want to now implement my own full text search engine for my documents. I
am not sure how should i start about doing this, since in example code I ran
start.jar and post.jar? 

do I have to run start.jar even for my own search engine java file, or do i
have to code a java class that would activate local host at solr (i.e.
http://localhost:8983/solr/)?

Also for my own search engine, I have created a schema.XML file, but not
sure where to place it in my workspace?

Lastly, my documents are stored as JSON objects, should i get each JSON
object individually> convert it to SolrInputDocument> and then add it to
solrServer? 

I am a beginner in Java and SolrJ, would highly appreciate any help.

Schema for storing my docs (research papers):
<schema name="mySchema" version="1">
  <fields>
        <field name="title" type="text" indexed="true" stored="true"/>
        <field name="abstract" type="text" indexed="true" stored="true"/>
        <field name="published_in" type="text" indexed="true" stored="true"/>
  </fields>
</schema>

Thanks very much,
-Ali

-- 
View this message in context: 
http://old.nabble.com/SolrJ-Beginner-%28NEED-HELP-URGENT%29-tp27596171p27596171.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to