Re: FW: DIH relating multiple DataSources

2011-03-28 Thread Jeffrey Chang
s, Jeff On Mon, Mar 28, 2011 at 3:18 PM, wrote: > > > -Original Message- > From: Jeffrey Chang (IS-TW) > Sent: Saturday, March 26, 2011 9:00 PM > To: solr-user@lucene.apache.org > Subject: DIH relating multiple DataSources > > Hi All, > > I'm a newbie

Re: Cant retrieve data

2011-03-28 Thread Jeffrey Chang
I'm also new but I was able to get DIH working. >From your response your have: ... Indexing completed. Added/Updated: 0 documents. Deleted 0 documents. ... 0 I believe your fetch (db source and query) is correct based on the response but perhaps your mapping isn't. I would check required fields o

admin/index.jsp double submit on IE

2011-04-02 Thread Jeffrey Chang
Hi, I noticed /admin/index.jsp could issue a double submit on IE causing Jetty to error out. Fixed by modifying index.jsp's javascript submit to return false. ... queryForm.submit(); return false; ... Not sure if I should log a defect for this or not. - Jeff

Re: Solr architecture diagram

2011-04-07 Thread Jeffrey Chang
This is awesome; thank you! On Thu, Apr 7, 2011 at 6:09 PM, Jan Høydahl wrote: > Hi, > > Glad you liked it. You'd like to model the inner architecture of SolrJ as > well, do you? Perhaps that should be a separate diagram. > > -- > Jan Høydahl, search solution architect > Cominvent AS - www.comin

Re: Solr without Server / Search solutions with Solr on DVD (examples?)

2011-04-07 Thread Jeffrey Chang
Even if you can ship your DVD with a jetty server, you'll still need JAVA installed on the customer machine... On Thu, Apr 7, 2011 at 10:18 PM, Ezequiel Calderara wrote: > Can't you just run a jetty server on the background? > > But probably some antivirus or antispyware could take that as an toj

highlighting in multiValued field

2011-05-26 Thread Jeffrey Chang
Hi All, I am having a problem with search highlighting for multiValued fields and am wondering if someone can point me in the right direction. I have in my schema a multiValued field as such: When I search for term "Tel", it returns me the correct doc: ... Tel to talent 1 Tel to talent 2

Re: highlighting in multiValued field

2011-05-26 Thread Jeffrey Chang
you may even get an iPad or Nook out of it! > > Like us on Facebook! > > Follow us on Twitter! > > > > > -Original Message- > > From: Jeffrey Chang [mailto:jclal...@gmail.com] > > Sent: Thursday, May 26, 2011 11:10 PM > > To: solr-user@lucene.apac

Re: highlighting in multiValued field

2011-05-27 Thread Jeffrey Chang
> > Follow us on Twitter! > > > >> -Original Message- >> From: Jeffrey Chang [mailto:jclal...@gmail.com] >> Sent: Friday, May 27, 2011 12:16 AM >> To: solr-user@lucene.apache.org >> Subject: Re: highlighting in multiValued field >> &g

Re: highlighting in multiValued field

2011-05-28 Thread Jeffrey Chang
Hi All, I'll share my own workaround for my own issue. I simply created a new multiValued field that concatenantes the multiValued fields for index. During search, I will then have both fields in the same array position. Thanks, Jeff On Fri, May 27, 2011 at 10:24 PM, Jeffrey Chang

Re: parentDeltaQuery

2011-05-28 Thread Jeffrey Chang
I'm also working on Delta queries; here's what I found. Hopefully it's useful for you too: http://wiki.apache.org/solr/DataImportHandler#Using_delta-import_command On Tue, May 24, 2011 at 6:42 PM, Romi wrote: > Hi, i am new to solr and i m trying some examples to fetch data from MySql > to > so

Re: DataImportHandler

2011-05-30 Thread Jeffrey Chang
I faced the same problem before, but that's because some parent classloader has loaded the DataImport class instead of using the SolrResourceLoader's delegated classloader. How are you starting your Solr? Via Eclipse? If you try starting Solr using cmdline, will you encounter the same issue?