olr.
*
*Here, I am planning to use Solr java client.
*
*But, all the above things are possible with Java client and also with
delta-import.
*
*I am looking for changing the solr data whenever there is a change in the
database.*
*Even there is a small delay i am fine with that.
*
*Which one y
On 16 September 2013 02:47, Baskar Sikkayan wrote:
[...]
> Have a question now.
>
> I know in solr its flat file system and the data will be in denormalized
> form.
>
> My question :
>
> Have 3 tables,
>
> 1) user (userid, firstname, lastname, ...)
> 2) master (masterid, skills, ...)
> 3) child (
Hi,
I read few chapters of solr cookbook and hope, I have good basic
understanding of Apache solr and Datahandler.
I was able to modify the field and all. I am able to understand now, what i
was advised to do.
Have a question now.
I know in solr its flat file system and the data will be in d
On 15 September 2013 21:36, Baskar Sikkayan wrote:
>
> Hi,
> Thanks for the reply. I got it now. Is there XSD for schema.xml and
> solrconfig.xml?
> Also, if i have two different fields with different filed type, how can
> differentiate it in SolrJava client.
>
> SolrInputDocument doc = new Solr
Dear Baskar,
It seems that you are trying to jump into the
middle, and have a complete understanding
of everything before trying things. This makes
things difficult both for yourself, and for people
trying to help you. Solr can be a little complex
for beginners, so it is best to approach things
a
>
> > > >
> > > > On Sun, Sep 15, 2013 at 9:14 AM, Walter Underwood <
> > wun...@wunderwood.org
> > > > >wrote:
> > > >
> > > > > Solr does not have tables, and you can't add an index.
> > > > >
>
ith lots of columns.
> > > Think
> > > > about creating a view where each row has all the information for one
> > > search
> > > > result. It includes everything that is searched (indexed=true in the
> > > > schema) and returned (stored=true in the sc
> > schema) and returned (stored=true in the schema).
> > >
> > > wunder
> > >
> > > On Sep 14, 2013, at 7:32 PM, Amit Jha wrote:
> > >
> > > > Question is not clear to me. Please be more elaborative in your
> query.
> > > Why do u want
t; Rgds
> > > AJ
> > >
> > > On 15-Sep-2013, at 7:20, Baskar Sikkayan wrote:
> > >
> > >> How to add index to 3 diff tables from java ...
> > >>
> > >>
> > >> On Sun, Sep 15, 2013 at 6:49 AM, Amit Jha
> wro
t; >>
> >>
> >> On Sun, Sep 15, 2013 at 6:49 AM, Amit Jha wrote:
> >>
> >>> Add a field called "source" in schema.xml and value would be your table
> >>> names.
> >>>
> >>>
> >>>
> >>> Rgds
> >>>
>>>
>>> Rgds
>>> AJ
>>>
>>> On 15-Sep-2013, at 5:38, Baskar Sikkayan wrote:
>>>
>>>> Hi,
>>>> I am new to Solr and trying to use Solr java client instead of using the
>>>> Data handler.
>&g
>
>> Add a field called "source" in schema.xml and value would be your table
>> names.
>>
>>
>>
>> Rgds
>> AJ
>>
>> On 15-Sep-2013, at 5:38, Baskar Sikkayan wrote:
>>
>>> Hi,
>>> I am new to Solr and tryi
> > Hi,
> > I am new to Solr and trying to use Solr java client instead of using the
> > Data handler.
> > Is there any configuration i need to do for this?
> >
> > I got the following sample code.
> >
> > SolrInputDocument doc = new SolrInputDocumen
Add a field called "source" in schema.xml and value would be your table names.
Rgds
AJ
On 15-Sep-2013, at 5:38, Baskar Sikkayan wrote:
> Hi,
> I am new to Solr and trying to use Solr java client instead of using the
> Data handler.
> Is there any configuration
Hi,
I am new to Solr and trying to use Solr java client instead of using the
Data handler.
Is there any configuration i need to do for this?
I got the following sample code.
SolrInputDocument doc = new SolrInputDocument();
doc.addField("cat&qu
It would really help to see the relevant parts of the code
you're using to see what you've tried. You might want to
review:
http://wiki.apache.org/solr/UsingMailingLists
Best
Erick
On Mon, Jan 23, 2012 at 2:45 PM, jingjung Ng wrote:
> Hi,
>
> I implemented the facet using
>
> query.addFacetQuery
Hi,
I implemented the facet using
query.addFacetQuery
query.addFilterQuery
to facet on:
gender:male
state:DC
This works fine. How can I facet on multi-values using Solrj API, like
following:
gender:male
gender:female
state:DC
I've tried, but return 0. Can anyone help ?
Thanks,
-jingjung n
@lucene.apache.org; cra...@ceiindia.com
Subject: Re: Solr java client using solrj API
if you wish to search the content in your DB , you will need to index it first
to Solr.
the search can be done on Solr and if you are using java , you can use SolrJ
for that.
--Noble
On Thu, Mar 5, 2009 at 4:29 PM, Radha
if you wish to search the content in your DB , you will need to index
it first to Solr.
the search can be done on Solr and if you are using java , you can use
SolrJ for that.
--Noble
On Thu, Mar 5, 2009 at 4:29 PM, Radha C. wrote:
>
> Hi,
>
> We are planning to use solr search server for our data
Hi,
We are planning to use solr search server for our database content search,
so we have a plan to create our own java client.
Does solrj API provide the facilities to create java client for our database
search? Where I can get the information about the integration of oracle
content +solr sear
Erik, thanks a lot for this example.
Now, all works fine :-)
Original-Nachricht
> Datum: Thu, 13 Nov 2008 06:53:36 -0500
> Von: Erik Hatcher <[EMAIL PROTECTED]>
> An: solr-user@lucene.apache.org
> Betreff: Re: full-import with solrj (solr Java client)
>
On Nov 13, 2008, at 6:20 AM, [EMAIL PROTECTED] wrote:
I want to run a (DataImportHandler) full-import with solrj. I
understand how to send queries with SolrQuery etc., but I don't know
how to construct the "dataimport?command=full-import&commit=true"
path. Which classes do I have to use? Sol
Hello,
I want to run a (DataImportHandler) full-import with solrj. I understand how to
send queries with SolrQuery etc., but I don't know how to construct the
"dataimport?command=full-import&commit=true" path. Which classes do I have to
use? SolrRequest? It would be very nice if you could post
Subject: solrj or any other solr java client
>
> Hi all,
> Where can I find the latest and the greatest copy of SOLRJ or any other http
> java client for solr?
>
> pt
> ???u0?
>
> Paul Treszczotko
> Architect, Client Systems
> INPUT
&
Hi all,
Where can I find the latest and the greatest copy of SOLRJ or any other http
java client for solr?
pt
???u0?
Paul Treszczotko
Architect, Client Systems
INPUT
11720 Plaza America Drive, Suite 1200 Reston, Virginia 20190
Direct: 703-707-3524; Fax 703-707-6201
Th
On 4/21/07, Ge, Yao (Y.) <[EMAIL PROTECTED]> wrote:
Looks like there is no publish java client for solr - what a surprise. I
would assume it would be very useful for integrating solr into existing
apps.
The leading candidate is https://issues.apache.org/jira/browse/SOLR-20
Feedback is welcome..
Looks like there is no publish java client for solr - what a surprise. I
would assume it would be very useful for integrating solr into existing
apps.
Anyone has done parsing standard XML response to Java Objects? I would
like to create some strong typed object hierarchy instead bunch of
Collectio
27 matches
Mail list logo