0

We need to extract and store C# objects into Apache Solr but weren't sure if anyone has done work on this. Here's an example:

  • A Word document being indexed can have a Persons list associated with it.
  • Each Person object in the list has these fields,
    • Name
    • Age
    • Email address
    • Phone

How do you store this in Solr? Any .NET examples out there? The only code I could find was the Solrizer, which is Ruby.

burning_LEGION
  • 13,246
  • 8
  • 40
  • 52
Alex
  • 34,699
  • 13
  • 75
  • 158

1 Answers1

3

There is Solrnet library that can help you.

user854301
  • 5,383
  • 3
  • 28
  • 37
  • There are examples of using SolrNet at http://code.google.com/p/solrnet/ I would also recommend you look at the SampleApp in the SolrNet Source - http://github.com/mausch/SolrNet/tree/master/SampleSolrApp – Paige Cook Aug 14 '12 at 11:45