clucene

Good Documentation for Learning Clucene?

Is there a good book or tutorial for setting up and using Cluence for beginners? ...

clucene optimisation

Basically .I am using Apache threads to serve request in a web application via cgi. These cgi create an instance of searcher, search the HD indexes and gets the result back . Now, I am trying to map the file structure of lucene index onto memory and then utilise the same instance of indexes for every request . For this , I need to pass o...

adding a document to a Lucene index causes crash

i'm trying to index an mp3 file with only one ID3 frame. using CLucene and TagLib. the following code works fine: ... TagLib::MPEG::File file("/home/user/Depeche Mode - Personal Jesus.mp3"); if (file.ID3v2Tag()) { TagLib::ID3v2::FrameList frameList = file.ID3v2Tag()->frameList(); lucene::document::Document *document = new lucene...

is CLucene is faster than java lucene?

hello, i am using java lucene and i am moving my code from java to c++ for some reason so i need to know about the performance of clucene can any one explain ...

How to find the library name for clucene

hello, i need to use clucene in my c++ apps and i have installed i tried using with my eclipse i cant find the library specication with clucene how to add the library say in project Properties->GCC c++ linker is there is any way to find the library name ...

can i use CLucene and the Cue Sheet Parser together?

hello, i'm trying to use clucene-0.9.21b and libcue-1.3.0 in Qt Creator on Kubuntu Lucid. this code is compilable: project.pro SOURCES += main.cpp LIBS += -lcue INCLUDEPATH += /usr/include/libcue-1.3/libcue main.cpp extern "C" { #include <libcue.h> } int main(int argc, char *argv[]) { return 0; } so is this: project.pro SOURC...