Re: Using Embedded and HTTP Post alternatively

2007-11-06 Thread Ryan McKinley
How reliable are the nightly builds? Can it be used in production? The nightly builds are stable in that they do what they say they do -- and if not, they are fixed quickly. However, the interfaces that have changed since 1.2 are not totally stable. That is, the interfaces from 1.2 will

Re: Using Embedded and HTTP Post alternatively

2007-11-06 Thread Mike Klaas
On 6-Nov-07, at 10:52 AM, Jörg Kiegeland wrote: If you need to allow HTTP access to solr, then just use standard solr with your embedded stuff in a custom request handler (or something). Any other path, you will be re-inventing many wheels. If at all possible, I reccomend checking out: ht

Re: Using Embedded and HTTP Post alternatively

2007-11-06 Thread Jörg Kiegeland
If you need to allow HTTP access to solr, then just use standard solr with your embedded stuff in a custom request handler (or something). Any other path, you will be re-inventing many wheels. If at all possible, I reccomend checking out: http://wiki.apache.org/solr/Solrj this is nice becaus

Re: Using Embedded and HTTP Post alternatively

2007-10-29 Thread Ryan McKinley
If you need to allow HTTP access to solr, then just use standard solr with your embedded stuff in a custom request handler (or something). Any other path, you will be re-inventing many wheels. If at all possible, I reccomend checking out: http://wiki.apache.org/solr/Solrj this is nice because

Using Embedded and HTTP Post alternatively

2007-10-29 Thread Jörg Kiegeland
Hi, I have written code using the Embedded API from SOLR. Now there is the requirement for access to a remote server, so I would need to use HTTP Post. So is it possible to wrap Embedded API into HTTP Post calls? If not, how difficult would it be in general to translate the example at http://wi