What is recommended version of jdk 1.7?

2013-10-23 Thread Danil ŢORIN
We had some problems with u45. I know there are several jiras, and a bug report for oracle. But my question in more pragmatic: when running test for release like latest 4.5.1, what jvm (preferably 1.7) did you used ? What is the lastest but safe version to use with Lucene?

Re: Custom Directory and IndexInput

2012-08-21 Thread Danil ŢORIN
Bremen > > http://www.thetaphi.de > > eMail: u...@thetaphi.de > > ** ** > > *From:* Danil ŢORIN [mailto:torin...@gmail.com] > *Sent:* Tuesday, August 21, 2012 11:34 AM > > *To:* dev@lucene.apache.org > *Subject:* Re: Custom Directory and IndexInput >

Re: Custom Directory and IndexInput

2012-08-21 Thread Danil ŢORIN
taphi.de**** > > eMail: u...@thetaphi.de > > ** ** > > *From:* Danil ŢORIN [mailto:torin...@gmail.com] > *Sent:* Tuesday, August 21, 2012 11:13 AM > > *To:* dev@lucene.apache.org > *Subject:* Re: Custom Directory and IndexInput > > ** ** > > Strange

Re: Custom Directory and IndexInput

2012-08-21 Thread Danil ŢORIN
he casting problem with covariant override. > But DataInput.clone() was always public. > > ** ** > > - > > Uwe Schindler > > H.-H.-Meier-Allee 63, D-28213 Bremen > > http://www.thetaphi.de**** > > eMail: u...@thetaphi.de > > ** ** &

Re: Custom Directory and IndexInput

2012-08-21 Thread Danil ŢORIN
Is there a way to force run full lucene & solr test suite against my new Directory implementation? Just to make sure everything is covered :) On Tue, Aug 21, 2012 at 10:55 AM, Danil ŢORIN wrote: > My bad, few casts solved the issue. > > > On Tue, Aug 21, 2012 at 10:46 AM, Da

Re: Custom Directory and IndexInput

2012-08-21 Thread Danil ŢORIN
My bad, few casts solved the issue. On Tue, Aug 21, 2012 at 10:46 AM, Danil ŢORIN wrote: > One tricky thing, I'm doing a lot of delegation, I can't call "clone()" on > the DataInput I'm delegating to. > (unfortunately in my case it's delegation, not inhe

Re: Custom Directory and IndexInput

2012-08-21 Thread Danil ŢORIN
* ** > > - > > Uwe Schindler > > H.-H.-Meier-Allee 63, D-28213 Bremen > > http://www.thetaphi.de > > eMail: u...@thetaphi.de > > ** ** > > *From:* Danil ŢORIN [mailto:torin...@gmail.com] > *Sent:* Tuesday, August 21, 2012 8:59 AM &

Re: Custom Directory and IndexInput

2012-08-20 Thread Danil ŢORIN
sure that the new > IndexInput can be used independent, although on same file/same file > descriptor like another one. > > ** ** > > Uwe > > ** ** > > - > > Uwe Schindler > > H.-H.-Meier-Allee 63, D-28213 Bremen > > http://ww

Custom Directory and IndexInput

2012-08-20 Thread Danil ŢORIN
I'm trying to build a custom directory implementation, actually the directory itself just fallback to one of the existing directory implementations, so it's actually more about IndexInput/IndexOutput. I have some concerns about my implementation, especially related to multithreading: - IndexOu

Re: HTTP ERROR: 400

2011-03-31 Thread Danil ŢORIN
ERROR 500: unknown context On Thu, Mar 31, 2011 at 10:21, Deepak Singh wrote: > Getting error messge while indexing file > > HTTP ERROR: 400 > ERROR:unknown field 'trapped' - To unsubscribe, e-mail: dev-unsubscr...@lucene.apache

Re: IndexReader Cache - a different angle

2010-09-13 Thread Danil ŢORIN
provide a reader that has proper FieldCache implementation. And I'm a bit uncomfortable to dig that deep :) On Mon, Sep 13, 2010 at 17:51, Danil ŢORIN wrote: > I'd second that > > In my usecase we need to search, sometimes with sort, on pretty big index... > > So in w

Re: IndexReader Cache - a different angle

2010-09-13 Thread Danil ŢORIN
I'd second that In my usecase we need to search, sometimes with sort, on pretty big index... So in worst case scenario we get OOM while loading FieldCache as it tries do create an huge array. You can increase -Xmx, go to bigger host, but in the end there WILL be an index big enough to crash y