Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Solr server setup successfully with working searching and indexing capabilties. There is about 380 documents in it after a full-import from my database.

Since running a full import each time will be quite time consuming once the amount of documents rise i am looking to SolrNet to make it easier to add/edit/delete documents in the Solr index.

So Solr has an index imported from my database. In my webservice im using SolrNet and here i have a method that adds something new to the index. After it's added it seems its the only thing in the index, all the "old" data that was imported is now gone.

Question 1: Can SolrNet ask Solr for a full-import again? (basicly calling this command: /solr/dataimport?command=full-import)

Question 2: Is SolrNet supposed to be able to CRUD to an excisting Index without wiping the old data? Im using this POC code to test it: http://pastebin.com/4G1YZ6Ah if so can you give me a clue as to what im doing wrong?

share|improve this question

1 Answer

up vote 2 down vote accepted
  1. Data import handler commands are not currently implemented in SolrNet (issue here) but you can just call the DIH command with a simple WebClient.

  2. When you call Add() in SolrNet you add just that document. It does not wipe the index or anything like that. Your issue is elsewhere.

share|improve this answer
Im guessing the issue isnt with Solrnet then? Do you have any idea or clue as to what might cause this behaviour in Solr? – mfriis Jan 22 '11 at 13:16
@mfriis: start from a known good state (i.e. the SolrNet sample app) and work step-by-step from there. – Mauricio Scheffer Jan 22 '11 at 14:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.