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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use the multi-core / multi-instance support in the SolrNet Windsor facility, then use a IHandlerSelector to select the appropriate |
|||
|
|