Lucene is not about scaling out, its just a search engine library. You should be using SolrCloud or ElasticSearch - the latter has a very good .NET client library called NEST you can use
On Tue, Aug 20, 2013 at 3:02 PM, Marc Loeb < [email protected]> wrote: > Hi > > > > I have an Lucene.NET implementation with as a prototype that I need to > rework. It seems to me that Lucene.NET is not up to date (last commit > Jan 13) and seems to use Lucene 3.0.3. > > > > My major issue is that I scaling was not considered at design time, but > needs to be done now. Lucene does not support shards and replicas (but > solr can) - at least from my first impression. > > > > My current alternatives for scaling seem to look like this: > > - Move to Solar cloud, abandon the current implementation > > - Create a shard/replica mechanism for Lucene > > > > Any ideas? Thanks! > > Marc > >
