Re: Solr Java Client

2013-09-16 Thread Baskar Sikkayan
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

Re: Solr Java Client

2013-09-16 Thread Gora Mohanty
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 (

Re: Solr Java Client

2013-09-15 Thread Baskar Sikkayan
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

Re: Solr Java Client

2013-09-15 Thread Gora Mohanty
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

Re: Solr Java Client

2013-09-15 Thread Gora Mohanty
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

Re: Solr Java Client

2013-09-15 Thread Baskar Sikkayan
> > > > > > > > > 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. > > > > > >

Re: Solr Java Client

2013-09-15 Thread Erick Erickson
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

Re: Solr Java Client

2013-09-15 Thread Baskar Sikkayan
> > 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

Re: Solr Java Client

2013-09-15 Thread Erick Erickson
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

Re: Solr Java Client

2013-09-15 Thread Baskar Sikkayan
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 > >>>

Re: Solr Java Client

2013-09-14 Thread Walter Underwood
>>> >>> 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

Re: Solr Java Client

2013-09-14 Thread Amit Jha
> >> 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

Re: Solr Java Client

2013-09-14 Thread Baskar Sikkayan
> > 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

Re: Solr Java Client

2013-09-14 Thread Amit Jha
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

Solr Java Client

2013-09-14 Thread Baskar Sikkayan
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

Re: Solr Java client API

2012-01-24 Thread Erick Erickson
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

Solr Java client API

2012-01-23 Thread jingjung Ng
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

RE: Solr java client using solrj API

2009-03-05 Thread Radha C.
@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

Re: Solr java client using solrj API

2009-03-05 Thread Noble Paul നോബിള്‍ नोब्ळ्
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

Solr java client using solrj API

2009-03-05 Thread Radha C.
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

Re: full-import with solrj (solr Java client)

2008-11-13 Thread gistolero
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) >

Re: full-import with solrj (solr Java client)

2008-11-13 Thread Erik Hatcher
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

full-import with solrj (solr Java client)

2008-11-13 Thread gistolero
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

Re: solrj or any other solr java client

2008-02-22 Thread Otis Gospodnetic
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 &

solrj or any other solr java client

2008-02-22 Thread Paul Treszczotko
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

Re: solr java client code and XML schema

2007-04-21 Thread Yonik Seeley
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..

solr java client code and XML schema

2007-04-21 Thread Ge, Yao \(Y.\)
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