November 13, 2007 5:06 PM
To: solr-user@lucene.apache.org
Subject: Solr java tutorial
Hi everyone,
My next question is: is there a beginner's tutorial on how to
programmatically query solr?
I have seen some users' do things like:
SolrServer server = getSolrServer();
-0500
From: [EMAIL PROTECTED]
To: solr-user@lucene.apache.org
Subject: Re: Solr java tutorial
Dave C. wrote:
I'm really confused...is SolrJ coming in Solr 1.3 (which hasn't
been released yet)?
It doesn't seem to be found in Solr 1.2 which I am using.
please enlighten..
corre
Ah...
:(
Is there a timeline for the 1.3 release?
- david
> Date: Tue, 13 Nov 2007 18:33:01 -0500
> From: [EMAIL PROTECTED]
> To: solr-user@lucene.apache.org
> Subject: Re: Solr java tutorial
>
> Dave C. wrote:
> > I'm really confused...is SolrJ coming i
Dave C. wrote:
I'm really confused...is SolrJ coming in Solr 1.3 (which hasn't been released
yet)?
It doesn't seem to be found in Solr 1.2 which I am using.
please enlighten..
correct. solrj is in solr-1.3-dev -- to use it you need to use a nightly
build.
It has not been officially releas
I'm really confused...is SolrJ coming in Solr 1.3 (which hasn't been released
yet)?
It doesn't seem to be found in Solr 1.2 which I am using.
please enlighten..
- David
> Date: Tue, 13 Nov 2007 17:21:13 -0500
> From: [EMAIL PROTECTED]
> To: solr-user@lucene.apache.org
Not yet, but there should be!
Currently people learn it from looking at the source and tests. I
started to add something to:
http://wiki.apache.org/solr/Solrj
it (obviously) still needs work.
If you are using eclipse (or similar), after typing "solrQuery." you
should get a drop down of a
Hi everyone,
My next question is: is there a beginner's tutorial on how to programmatically
query solr?
I have seen some users' do things like:
SolrServer server = getSolrServer();
SolrQuery
solrQuery = new SolrQuery();
solrQuery.setQuery(..);
QueryResponse rs