Donate Share

CLucene - a C++ search engine

Code

Programming Languages: Perl, C++

License: Apache License V2.0, GNU Library or Lesser General Public License (LGPL)

Repositories

browse code, statistics, last commit on 2009-09-27 svn co https://clucene.svn.sourceforge.net/svnroot/clucene clucene

browse code, statistics, last commit on 2009-12-03 git://clucene.git.sourceforge.net/gitroot/clucene/clucene (read-only)

Show:

What's happening?

  • Branch 2.3.2 - problem tokenizing dash-prefixed words

    1) add a document with this word: "one"; 2) add another document with this word "-onetwo". Check index with Luke, it will contain: "one" and "wo", e.g. the beginning of the term from 2nd document has been clipped off. Detailed explanation of the error is in the attached zip, file: error_description.txt Explanation how to set up the test case is in the attached zip, readme.txt. Test prepared for...

    2009-12-08 01:04:05 UTC by celtix44

  • CLucene - a C++ search engine

    synhershko pushed 1 commit(s) to refs/heads/isidor_working in the clucene Git repository of the CLucene - a C++ search engine project.

    2009-12-03 18:38:05 UTC by synhershko

  • Comment: Compilation error - Visual Studio 6

    sorry it's a duplicate to previous item -- no idea how it happened.

    2009-11-20 13:45:10 UTC by celtix44

  • Compilation error - Visual Studio 6

    I couldn't compile 2,3,2 by using Visual Studio 6 - had to make 37 changes to avoid compilation errors. Tested against the snapshot from GIT marked as "Re-enabling tests commented out in last commit [master]", compiled with ENABLE_ASCII + DISABLE_MULTITHREADING. Attached files lists the changes that stop compilation errors. Please note that these changes are compilation stopgaps only, their...

    2009-11-20 13:40:20 UTC by celtix44

  • Compilation error - Visual Studio 6

    I couldn't compile 2,3,2 by using Visual Studio 6 - had to make 37 changes to avoid compilation errors. Tested against the snapshot from GIT marked as "Re-enabling tests commented out in last commit [master]", compiled with ENABLE_ASCII + DISABLE_MULTITHREADING. Attached files lists the changes that stop compilation errors. Please note that these changes are compilation stopgaps only, their...

    2009-11-20 13:22:59 UTC by celtix44

  • Branch 2.3.2 -- crash in ThreadLocal.cpp

    I hit a crash while testing a DLL compiled with Visual Studio 9, ENABLE_ASCII_MODE | DISABLE_MULTITHREADING. It appears that (under certain circumstances) DLLMain implemented in ThreadLocal.cpp gets invoked with fdwReason=3 (DLL_THREAD_DETACH) more than once. As my test is compiled with DISABLE_MULTITHREADING, UnregisterCurrentThread() attempts to unregister the same (current) thread more than...

    2009-11-20 00:39:55 UTC by celtix44

  • Comment: Endless loop in IW::Internal::applyDeletesSelectively()

    There are such test cases in the Java Lucene test suite. They are a little bit more complex than the attached one. But I will try to port them in the next week.

    2009-11-17 21:08:33 UTC by idolum

  • CLucene - a C++ search engine

    ustramooner pushed 122 commit(s) to refs/heads/atomicthreads in the clucene Git repository of the CLucene - a C++ search engine project.

    2009-11-16 22:17:21 UTC by ustramooner

  • CLucene - a C++ search engine

    ustramooner pushed 15 commit(s) to refs/heads/ben_working in the clucene Git repository of the CLucene - a C++ search engine project.

    2009-11-16 21:28:04 UTC by ustramooner

  • Endless loop in IW::Internal::applyDeletesSelectively()

    If the method DocumentsWriter::updateDocument() catches an exception, the current processed document will be marked as deleted by invoking DocumentsWriter::addDeleteDocId(). This method adds the document ID to a vector, which will be then iterated endlessly in the method IndexWriter::Internal::applyDeletesSelectively(). Attached on this bug are two files: - Test.txt: Diffs of several files...

    2009-11-15 23:11:44 UTC by idolum