Re: about partial index update

2011-12-23 Thread Kiwi de coder
hi, if in this case, then i think reindex the whole document probably will be easily right ? as compare to write to text file (look like more work and probably performance same ? ) actually i was looking for a features like indextank which can update dynamic value without scarify performance. ht

Re: about partial index update

2011-12-23 Thread Kiwi de coder
hi, thx for reply ! In my case, my vote will keep update in database, but the ExternalFileField since like the value will get from a file. so if I using ExternalFileField, is that anyway to read the value from index actually ? regards, kiwi On Fri, Dec 23, 2011 at 10:41 PM, Ahmet Arslan wrote

Re: about partial index update

2011-12-23 Thread Kiwi de coder
hi, if i using ExternalFileField, i cannot do sorting when query. regards, kiwi On Fri, Dec 23, 2011 at 6:33 PM, Ahmet Arslan wrote: > > I have a object like this > > > > public class Link { > > private long id; > > private string url; > > // other 20 property > > private int vote; //s

about partial index update

2011-12-22 Thread Kiwi de coder
hi all, I have a object like this public class Link { private long id; private string url; // other 20 property private int vote; //summary of vote, for sorting used } so when I index document, my Lucene document also contain all field from my Link object. e.g doc_id = 1 url = "solr.org

Re: solr DIH for mongodb

2011-09-26 Thread Kiwi de coder
ucene - Nutch > Lucene ecosystem search :: http://search-lucene.com/ > > > > > >From: Kiwi de coder > >To: solr-user@lucene.apache.org > >Sent: Monday, September 26, 2011 11:58 AM > >Subject: solr DIH for mongodb > > > >hi, > > > >do we got any DIH plugin which is for mongodb? > > > >regards, > >kiwi > > > > > > >

solr DIH for mongodb

2011-09-26 Thread Kiwi de coder
hi, do we got any DIH plugin which is for mongodb? regards, kiwi

Re: Tomcat unicode problems with IE 9, Firefox 6 and solrj client

2011-09-18 Thread Kiwi de coder
maybe set on tomcat connector ? kiwi On Mon, Sep 19, 2011 at 12:56 AM, Xue-Feng Yang wrote: > The first returned link for Firefox 6 is the same as the returned link for > IE 9. I was misread. > > So the encode is this one. Anyone knows what it is. > > > > > F

location of solr folder when deploy to servlet container

2011-09-15 Thread Kiwi de coder
hi, how do i configure the solr folder to specific directory when deploy to servlet container. regards, kiwi

Re: about standardAnaylzer in solr

2011-07-13 Thread Kiwi de coder
> > > Edo > > On Wed, Jul 13, 2011 at 3:40 PM, Kiwi de coder wrote: > > > hi, > > > > I using solr 3.3 which in schema.xml contain this : > > > > > > > > > > > > i use the sentences as example "XY&

Re: about standard analyzer

2011-07-13 Thread Kiwi de coder
e fieldType definition). In particular, this > looks like the result of WordDelimiterFilterFactory. If you click > the "verbose" box on the analysis page, you should see the > results of each step in the analysis chain. > > Best > Erick > > On Wed, Jul 13, 2011 at 10:36

about standardAnaylzer in solr

2011-07-13 Thread Kiwi de coder
hi, I using solr 3.3 which in schema.xml contain this : i use the sentences as example "XY&Z Corporation - x...@example.com" however, when I try on /analysis.jsp, it show difference result compare to using Lucene. using solr I got result below when using "text_standard" and "t

about standard analyzer

2011-07-13 Thread Kiwi de coder
hi, I using solr 3.3 which in schema.xml contain this : i use the sentences as example "XY&Z Corporation - x...@example.com" however, when I try on /analysis.jsp, it show difference result compare to using Lucene. using solr I got result below when using "text_standard" and "t

@field for child object

2011-07-04 Thread Kiwi de coder
hi, i wondering solrj @Field annotation support embedded child object ? e.g. class A { @field string somefield; @emebedded B b; } regards, kiwi

Re: Using jetty's GzipFilter in the example solr.war

2010-11-13 Thread Kiwi de coder
try to put u filter on top of web.xml (instead of middle or bottom), i try this few day and it just only a simple solution (not sure is a spec to put on top or is a bug) hope this help. kiwi On Sat, Nov 13, 2010 at 8:11 PM, Jay Luker wrote: > Hi, > > I thought I'd try turning on gzip compressi

Re: Design questions/Schema Help

2010-07-26 Thread Kiwi de coder
i think the search log will require a lot of storage which may make indexes size unreasonable large if store in solr. and the aggregration results may not really fixed in lucene index structure. :) kiwi happy hacking ! On Tue, Jul 27, 2010 at 7:47 AM, Tommy Chheng wrote: > Alternatively, hav

Re: SOLR or Hibernate Search?

2009-12-29 Thread Kiwi de coder
hi, hibernate search is only work with hibernate, while solr can use for difference system other then hibernate (loose coupling) current solr still not support complex POJO index like what hibernate did. 1) I think one way u can do is index on solr and retrieve the unique id and get from databas

Re: solr and hibernate integration

2009-11-09 Thread Kiwi de coder
; Solr. For all the supported cases , SolrJ mapping works well > > To answer your question , I am not aware of anybody making it work w/ > hibernate > > On Mon, Nov 9, 2009 at 1:54 PM, Kiwi de coder wrote: > > hi, > > > > I had a project which is required to i

solr and hibernate integration

2009-11-09 Thread Kiwi de coder
hi, I had a project which is required to index POJO and search it from database. however, the current support for POJO is only limited to field value, which still lack of support of complex domain object model like composite element, collection etc. hibernate search had done a great job that is