Re: The line code throws exception in all time.

2010-11-13 Thread [email protected]
it's by design AI On 06.11.2010 12:35, ?? wrote: Hi, buddies when i am debugging lucenue.net 2.9.2, i found int charsRead = input.Read(buffer, newPosition, buffer.Length - newPosition); if (charsRead<= 0) throw new System.IO.IOException("read past eof"); // it throws exception in

Re:Re: The line code throws exception in all time.

2010-11-07 Thread 吴国强
Thanks Troy for your detail infor about this issue. according to your value info, i will further investigate it. once i make a progress on it, i will append related info into the email thread. thanks gain. -- 为爱上色 公益活动 At 2010-11-07,"Troy Howard" wrote: >Guoqiang, > >This often happens w

Re: The line code throws exception in all time.

2010-11-06 Thread Troy Howard
Guoqiang, This often happens when an index failed to write the field data correctly for some reason. Try building a new index from your source data. This may just work, if you had some kind of abnormal file i/o issues during indexing. That said, the problem is more likely related to Unicode surr

RE: The line code throws exception in all time.

2010-11-06 Thread Digy
@lucene.apache.org Subject: The line code throws exception in all time. Hi, buddies when i am debugging lucenue.net 2.9.2, i found int charsRead = input.Read(buffer, newPosition, buffer.Length - newPosition); if (charsRead <= 0) throw new System.IO.IOException("read past eof"); // it throws

The line code throws exception in all time.

2010-11-06 Thread 吴国强
Hi, buddies when i am debugging lucenue.net 2.9.2, i found int charsRead = input.Read(buffer, newPosition, buffer.Length - newPosition); if (charsRead <= 0) throw new System.IO.IOException("read past eof"); // it throws exception in all time. are you encounter the same issue ? is there w