Re: Natively Execute SOLR Queries within an app server.

2015-07-24 Thread Mikhail Khludnev
SolrDispatchFilter holds CoreContainer cores, perhaps you can extend the filter to manage it to publish cores into jndi, where core can be found in other application, and is used for instantiating EmbeddedSolrServer. On Fri, Jul 24, 2015 at 9:50 PM, Darin Amos wrote: > Hello, > > I have an appli

Re: Natively Execute SOLR Queries within an app server.

2015-07-24 Thread Upayavira
On Fri, Jul 24, 2015, at 07:50 PM, Darin Amos wrote: > Hello, > > I have an application server that is running both the solr.war and a REST > API war within the same JVM. Is it possible to query the SOLR instance > natively (non-blocking) without connecting over HTTP? I could use > EmbeddedSolrS

Natively Execute SOLR Queries within an app server.

2015-07-24 Thread Darin Amos
Hello, I have an application server that is running both the solr.war and a REST API war within the same JVM. Is it possible to query the SOLR instance natively (non-blocking) without connecting over HTTP? I could use EmbeddedSolrServer but I cannot create a second instance of my core. If I ca