You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(25) |
Dec
(67) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(125) |
Feb
(23) |
Mar
(167) |
Apr
(2) |
May
|
Jun
(19) |
Jul
(304) |
Aug
(181) |
Sep
(189) |
Oct
(145) |
Nov
(110) |
Dec
(44) |
| 2006 |
Jan
(303) |
Feb
(40) |
Mar
(2) |
Apr
(143) |
May
|
Jun
(74) |
Jul
(31) |
Aug
(7) |
Sep
(21) |
Oct
(33) |
Nov
(102) |
Dec
(36) |
| 2007 |
Jan
|
Feb
(16) |
Mar
(38) |
Apr
(34) |
May
(3) |
Jun
(4) |
Jul
(4) |
Aug
(13) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
(2) |
Feb
|
Mar
(13) |
Apr
|
May
(18) |
Jun
(48) |
Jul
(136) |
Aug
(45) |
Sep
(21) |
Oct
(32) |
Nov
|
Dec
(9) |
| 2009 |
Jan
(4) |
Feb
|
Mar
(33) |
Apr
(23) |
May
(6) |
Jun
(3) |
Jul
(11) |
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: John W. <j_w...@us...> - 2005-01-10 16:34:11
|
Update of /cvsroot/clucene/src/CLucene/search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26303 Modified Files: IndexSearcher.cpp Log Message: - In IndexSearcher::Search(Query& query, const Filter* filter, const int_t nDocs) HitQueue& hq has become a pointer HitQueue* hq - A condition check has been added to check the allocation of hq - In IndexSearcher::Search(Query& query, const Filter* filter, const int_t nDocs) scoreDocs is default set to NULL and only allocated if scoreDocsLength > 0 |
|
From: John W. <j_w...@us...> - 2005-01-10 16:29:09
|
Update of /cvsroot/clucene/src/CLucene/search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25372 Modified Files: Hits.cpp Log Message: In void Hits::getMoreDocs(const int_t Min) scoreDocs is now checked if is a valid pointer. This is because when a Fuzzy search is done on an empty index (an index with no segments) scoreDocs becomes NULL |
|
From: John W. <j_w...@us...> - 2005-01-08 11:27:10
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23462 Modified Files: IndexReader.cpp Log Message: In IndexReaderLockWith::doBody() a array of 0 elements was instantiated when an index is empty. This has been changed into readers becoming NULL when an index is empty. |
|
From: John W. <j_w...@us...> - 2005-01-08 11:25:06
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23077 Modified Files: SegmentsReader.cpp Log Message: Prevented memory leakage in SegmentsReader::~SegmentsReader() by moving delete [] readers outside the if scope. delete [] readers is now done through a _DELETE_ARRAY CALL This was encountered due to the change of IndexReader.cpp 1.16 |
|
From: John W. <j_w...@us...> - 2005-01-07 12:08:40
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16170 Modified Files: SegmentMergeQueue.cpp Log Message: Changed pre condition check in the constructor of SegmentMergeQueue from size >0 into size >= 0. Due to changes of IndexReader 1.16 this check became to severe |
|
From: John W. <j_w...@us...> - 2004-12-31 11:22:07
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2562 Modified Files: SegmentsReader.cpp Log Message: Previous version did not compile. In void SegmentsReader::doClose() directory is a reference so this->directory->close(); was changed into this->directory.close(); |
|
From: Ben v. K. <ust...@us...> - 2004-12-31 00:00:56
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16642 Modified Files: IndexReader.cpp SegmentsReader.cpp SegmentsReader.h Log Message: fixed bug in indexreader. if an empty index is opened the directory gets closed immediately. changed so that the segmentsreader closes the directory when it is closed. |
|
From: David R. <woo...@us...> - 2004-12-29 20:04:29
|
Update of /cvsroot/clucene/src/CLucene/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15835 Modified Files: condition.c Log Message: Exclude code dependent on definitions in the _CND_DEBUG-specific portions of condition.h if _CND_DEBUG is not defined. Previously, condition.c referred to CND_STR_* even if _CND_DEBUG was not defined. |
|
From: John W. <j_w...@us...> - 2004-12-21 15:37:55
|
Update of /cvsroot/clucene/src/CLucene/store In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv760 Modified Files: FSDirectory.cpp Log Message: Documented some methods added a condition check |
|
From: Peter P. V. <PP...@MI...> - 2004-12-21 10:05:12
|
Hi I am using the StandardAnalyzer to index and search a number of texts and it works quite well. However I am having a problem with commas - it does not seem as they are seperated from the preceding word in the index. E.g. if I index the following text: Celesio's acquisition of UK-based Healthcare Logistics is positive as the UK is a major market for pharmaceuticals, says HVB.=20 And afterwards do a search for pharmaceuticals I get no hits. However, if I search for=20 pharmaceuticals* I do find the text. I have tried asking at the Lucene users mailing list and the StandardAnalyzer should remove commas and the like. Is this a bug in Clucene or am I doing something wrong? Best regards Peter Vestergaard PS: I can see this is a 'developers' list so I am not sure my question belongs here, but I was unable to find a list for asking 'user' questions. Please correct me! |
|
From: John W. <j_w...@us...> - 2004-12-20 14:13:38
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23430 Modified Files: QueryParser.h Log Message: Added private method void QueryParser::ExtractAndDeleteToken(void); |
|
From: John W. <j_w...@us...> - 2004-12-20 14:11:13
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22911 Modified Files: QueryParser.cpp Log Message: Added private method void QueryParser::ExtractAndDeleteToken(void); Documented some methods |
|
From: John W. <j_w...@us...> - 2004-12-17 16:38:32
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15717 Modified Files: QueryParser.cpp Log Message: Documented method QueryParser::MatchConjunction() |
|
From: John W. <j_w...@us...> - 2004-12-17 11:50:20
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16068 Modified Files: QueryParser.h Log Message: Changed some comment |
|
From: John W. <j_w...@us...> - 2004-12-17 11:49:00
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15669 Modified Files: QueryParser.cpp Log Message: In QueryParser::Parse(Reader& reader) a huge bug was found. lexer which is an instance of Lexer was created on the stack in QueryParser::Parse(Reader& reader). Which means that when QueryParser::Parse(Reader& reader) is exited lexer will be destroyed because the end of its scope is reached. However by executing the statement tokens = &lexer.Lex(); tokens points to the TokenList tokens of the instance lexer. Eventually when QueryParser::Parse(Reader& reader) is exited lexer is destroyed and so is its TokenList tokens while tokens of QueryParser still points to the freed memory. My solution is to make QueryParser responsible of the tokelist and let Lexter add tokens to the Tokenlist provided by QueryParser. In QueryParser::Parse(Reader& reader) tokens = &lexer.Lex(); has been replaced by lexer.Lex(tokens); Added some condition checks and documented some methods |
|
From: John W. <j_w...@us...> - 2004-12-17 11:47:35
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15319 Modified Files: Lexer.h Log Message: reader has become a pointer instead of a reference The TokenList tokens has been removed as a member of Lexer because Lexer must not own the TokenList it parses. For full explaination see comments of Queryparser.cpp 1.7 TokenList& Lexer::Lex() has been replaced by the method void Lexer::Lex(TokenList *tokenList). So now Lexer will use a TokenList supplied by the invoker. |
|
From: John W. <j_w...@us...> - 2004-12-17 11:44:46
|
Update of /cvsroot/clucene/src/CLucene/queryParser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14804 Modified Files: Lexer.cpp Log Message: reader has become a pointer instead of a reference TokenList& Lexer::Lex() has been replaced by the method void Lexer::Lex(TokenList *tokenList). So now Lexer will use a TokenList supplied by the invoker. For full explaination see comments of Queryparser.cpp 1.7 Add some condition checks and documented some methods of Lexer |
|
From: John W. <j_w...@us...> - 2004-12-16 15:52:45
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30182 Modified Files: TermInfosReader.cpp Log Message: Added condition checks |
|
From: John W. <j_w...@us...> - 2004-12-16 15:20:15
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22679 Modified Files: SegmentMerger.cpp Log Message: removed change comment at the top |
|
From: John W. <j_w...@us...> - 2004-12-16 15:18:48
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22342 Modified Files: SegmentReader.cpp Log Message: Added condition checks |
|
From: John W. <j_w...@us...> - 2004-12-16 15:17:18
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21964 Modified Files: SegmentMerger.cpp Log Message: In SegmentMerger::mergeNorms() OutputStream &output has become a pointer OutputStream *output Added condition checks |
|
From: John W. <j_w...@us...> - 2004-12-16 15:15:45
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21660 Modified Files: SegmentMergeQueue.cpp Log Message: Added condition checks |
|
From: John W. <j_w...@us...> - 2004-12-16 15:12:06
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20851 Modified Files: SegmentMergeInfo.cpp Log Message: Added conditions check and restored some code |
|
From: John W. <j_w...@us...> - 2004-12-16 09:51:56
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20688 Modified Files: SegmentInfos.cpp Log Message: Added serveral conditions checks |
|
From: John W. <j_w...@us...> - 2004-12-16 08:53:41
|
Update of /cvsroot/clucene/src/CLucene/index In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7562 Modified Files: TermInfo.cpp Log Message: Added precondition checks for some constructors and methods |