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

We're running a multi-tenant website (multiple hosts, different configs for each host, but one application) where every customer on every request could get routed to client-specific data bases and solr instances. So, depending on which url is mapped to the application, different connection strings will be provided for each request. This works well for normal databases where IConnectionProvider would provide a different connection string on each request depending on the hostname. We're using SolrNet for our text indexing and will have multiple instances running for the different hosts. Presently the SolrNet facility for Castle Windsor gets registered once with a solrUrl at configuration time. We want to be able to resolve an instance of SolrNet on every request with a different solrUrl depending on the tenant/host configuration. Is this possible?

share|improve this question

1 Answer

Use the multi-core / multi-instance support in the SolrNet Windsor facility, then use a IHandlerSelector to select the appropriate ISolrOperations<T> depending on tenant/host config.

share|improve this answer

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.