You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(16) |
Jul
(56) |
Aug
(2) |
Sep
(62) |
Oct
(71) |
Nov
(45) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(12) |
Feb
(22) |
Mar
|
Apr
(62) |
May
(15) |
Jun
(57) |
Jul
(4) |
Aug
(24) |
Sep
(7) |
Oct
(34) |
Nov
(81) |
Dec
(41) |
2005 |
Jan
(70) |
Feb
(51) |
Mar
(46) |
Apr
(16) |
May
(22) |
Jun
(34) |
Jul
(23) |
Aug
(13) |
Sep
(43) |
Oct
(42) |
Nov
(54) |
Dec
(68) |
2006 |
Jan
(81) |
Feb
(43) |
Mar
(64) |
Apr
(141) |
May
(37) |
Jun
(101) |
Jul
(112) |
Aug
(32) |
Sep
(85) |
Oct
(63) |
Nov
(84) |
Dec
(81) |
2007 |
Jan
(25) |
Feb
(64) |
Mar
(46) |
Apr
(28) |
May
(14) |
Jun
(42) |
Jul
(19) |
Aug
(34) |
Sep
(29) |
Oct
(25) |
Nov
(12) |
Dec
(9) |
2008 |
Jan
(15) |
Feb
(34) |
Mar
(37) |
Apr
(23) |
May
(18) |
Jun
(47) |
Jul
(28) |
Aug
(61) |
Sep
(29) |
Oct
(48) |
Nov
(24) |
Dec
(79) |
2009 |
Jan
(48) |
Feb
(50) |
Mar
(28) |
Apr
(10) |
May
(51) |
Jun
(22) |
Jul
(125) |
Aug
(29) |
Sep
(38) |
Oct
(29) |
Nov
(58) |
Dec
(32) |
2010 |
Jan
(15) |
Feb
(10) |
Mar
(12) |
Apr
(64) |
May
(4) |
Jun
(81) |
Jul
(41) |
Aug
(82) |
Sep
(84) |
Oct
(35) |
Nov
(43) |
Dec
(26) |
2011 |
Jan
(59) |
Feb
(25) |
Mar
(23) |
Apr
(14) |
May
(22) |
Jun
(8) |
Jul
(5) |
Aug
(20) |
Sep
(10) |
Oct
(12) |
Nov
(29) |
Dec
(7) |
2012 |
Jan
(1) |
Feb
(22) |
Mar
(9) |
Apr
(5) |
May
(2) |
Jun
|
Jul
(6) |
Aug
(2) |
Sep
|
Oct
(5) |
Nov
(9) |
Dec
(10) |
2013 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(4) |
May
(2) |
Jun
(1) |
Jul
(2) |
Aug
(5) |
Sep
|
Oct
(3) |
Nov
(3) |
Dec
(2) |
2014 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
(10) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(3) |
2015 |
Jan
(8) |
Feb
(3) |
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(3) |
Dec
|
2016 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(8) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mena H. <bme...@ya...> - 2012-02-24 19:26:47
|
Hi Our group is working in CLucene and we want to know the functions that exists in Lucene and doesn't exist in CLucene. we want to know how or where to get these functions . Thanks so much |
From: 江中文 <ej...@ma...> - 2012-02-24 03:02:37
|
hi all, With Clucene v2.3.3.4, I found something strange in SloppyPhraseScorer.cpp: 1. repeats[repeatsLen + 1] = NULL; // NULL terminate the array Is it a mistake? repeats was allocated like this: repeats = _CL_NEWARRAY(PhrasePositions*, repeatsLen + 1); 2. qsort(repeats, repeatsLen, sizeof(PhrasePositions*), comparePhrasePositions); After qsort, repeats is still unordered, and valgrind complains: ==20998== Invalid read of size 4 ==20998== at 0x6A4AF2E: lucene::search::SloppyPhraseScorer::comparePhrasePositions(void const*, void const*) (_SloppyPhraseScorer.h:50) ==20998== by 0x245F65: msort_with_tmp (in /lib/libc-2.5.so) ==20998== by 0x245F21: msort_with_tmp (in /lib/libc-2.5.so) ==20998== by 0x246436: qsort (in /lib/libc-2.5.so) ==20998== by 0x6A4A9AE: lucene::search::SloppyPhraseScorer::initPhrasePositions() (SloppyPhraseScorer.cpp:136) ==20998== by 0x6A4ABE8: lucene::search::SloppyPhraseScorer::phraseFreq() (SloppyPhraseScorer.cpp:42) ==20998== by 0x6A498E0: lucene::search::PhraseScorer::doNext() (PhraseScorer.cpp:92) ==20998== by 0x6A4A17D: lucene::search::PhraseScorer::next() (PhraseScorer.cpp:79) ==20998== by 0x6A4CBBA: lucene::search::ConjunctionScorer::init(int) (ConjunctionScorer.cpp:92) ==20998== by 0x6A4CD66: lucene::search::ConjunctionScorer::next() (ConjunctionScorer.cpp:54) ==20998== by 0x6A53CB2: lucene::search::BooleanScorer2::score(lucene::search::HitCollector*) (BooleanScorer2.cpp:629) ==20998== by 0x6A62AEF: lucene::search::IndexSearcher::_search(lucene::search::Query*, lucene::search::Filter*, int) (IndexSearcher.cpp:242) ==20998== by 0x6A6766D: lucene::search::Hits::getMoreDocs(unsigned int) (Hits.cpp:120) ==20998== by 0x6A67B67: lucene::search::Hits::Hits(lucene::search::Searcher*, lucene::search::Query*, lucene::search::Filter*, lucene::search::Sort const*) (Hits.cpp:60) ==20998== by 0x6A60C17: lucene::search::Searcher::search(lucene::search::Query*, lucene::search::Filter*) (SearchHeader.cpp:188) ==20998== by 0x6A60C5B: lucene::search::Searcher::search(lucene::search::Query*) (SearchHeader.cpp:184) If use std::sort instead qsort, everything works well, repeats is ordered and valgrind doesn't complain. Is it qsort's problem? Thanks Eli |
From: Vivien M. <V....@qs...> - 2012-02-23 22:57:01
|
Hi Ahmed: Thanks for your help. I also need to copy the header files, so I added the following lines (by guessing) into the CmakeList.txt as well: #install public headers. FOREACH(file ${HEADERS}) get_filename_component(apath ${file} PATH) get_filename_component(aname ${file} NAME) file(RELATIVE_PATH relpath ${CMAKE_SOURCE_DIR}/src/contribs-lib ${apath}) IF ( NOT aname MATCHES "^_.*" ) install(FILES ${file} DESTINATION include/${relpath} COMPONENT development) ENDIF ( NOT aname MATCHES "^_.*" ) ENDFOREACH(file) Please let me know if you feel there is anything wrong with the above. Thanks. On 24/02/12 9:39 AM, "Ahmed" <ci7...@gm...> wrote: >Hi >2 days ago i run into the same problem, if you want to install >contrib-libs add this lines to (at the end) src/contrib-lib/CmakeList.txt: > >install(TARGETS clucene-contribs-lib > DESTINATION ${LIB_DESTINATION} > COMPONENT runtime ) > >Le 23/02/2012 04:40, Vivien Meng a écrit : >> Hi Ben: >> >> Thanks for your help. >> >> As I am just at the beginning of transforming myself from a Windows >>.Net programmer to Mac programmer, not very sure how to deal with cmake >>properly yet, but I'll have a go. >> >> Truly grateful for your quick responses. >> >> -----Original Message----- >> From: Ben van Klinken [mailto:bva...@gm...] >> Sent: Thursday, 23 February 2012 1:19 PM >> To: clu...@li... >> Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib >>folder >> >> hmm, i think it's not in the install list. >> >> you can modify the src/contrib-lib/CmakeList.txt file to install the >>headers and libs. Have a look at src/core/Cmakelist.txt for wherever >> install() is called. >> >> basically you'd need to install the contents of HEADERS and the library >>itself. >> >> ben >> >> On 23 February 2012 12:02, Vivien Meng<V....@qs...> wrote: >>> Hi Ben: >>> >>> >>> We did not get any error, but no where we can find the installed >>>library. >>> >>> The following is the screen shot for the command: >>> >>> vivienm-mac0603:contribs-lib VMeng$ make install [ 7%] Built target >>> clucene-shared [ 74%] Built target clucene-core [100%] Built target >>> clucene-contribs-lib Install the project... >>> -- Install configuration: "RelWithDebInfo" >>> >>> >>> Thanks >>> >>> >>> On 23/02/12 12:31 PM, "Ben van Klinken"<bva...@gm...> wrote: >>> >>>> What error are you getting? >>>> ben >>>> >>>> On 23 February 2012 11:10, Vivien Meng<V....@qs...> wrote: >>>>> Hi Ben: >>>>> >>>>> >>>>> Thanks so much for your help. >>>>> >>>>> Using your suggestion, I get an Xcode project for >>>>> clucene-contribes-lib, however, the project builds but fails to >>>>>install. >>>>> >>>>> So for clucene-contribues-lib, make works, but make install does not >>>>> work. >>>>> >>>>> Any further suggestions? >>>>> >>>>> Thanks again. >>>>> >>>>> >>>>> >>>>> -----Original Message----- >>>>> From: Ben van Klinken [mailto:bva...@gm...] >>>>> Sent: Thursday, 23 February 2012 11:06 AM >>>>> To: clu...@li... >>>>> Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib >>>>> folder >>>>> >>>>> Hi, >>>>> >>>>> You create the contribs lib from the root project still.: >>>>> >>>>> so in<clucene>/ you do >>>>> >>>>> cmake -DBUILD_CONTRIBS_LIB=ON . >>>>> >>>>> and then make clucene-contribs-lib >>>>> >>>>> haven't used it for a while, so let us know how you go >>>>> >>>>> cheers >>>>> ben >>>>> >>>>> On 23 February 2012 09:28, Vivien Meng<V....@qs...> wrote: >>>>>> To whom this may concern: >>>>>> >>>>>> >>>>>> I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. >>>>>> >>>>>> I'd like to make Xcode project for snowball to build a library file, >>>>>> but when I try to use following cmake command line in the >>>>>>contribs-lib >>>>>> directory: >>>>>> cmake -G Xcode >>>>>> >>>>>> I get the following errors: >>>>>> >>>>>> include could not find load file: DefineOptions >>>>>> >>>>>> Unknown CMake command "DEFINE_OPTIONS". >>>>>> >>>>>> How do I fix this problem? >>>>>> >>>>>> >>>>>> Thanks in advance. >>>>>> >>>>>> >>>>>> Vivien >>>>>> >>>>>> >>>>>>--------------------------------------------------------------------- >>>>>>- >>>>>> -------- Virtualization& Cloud Management Using Capacity Planning >>>>>> Cloud computing makes use of virtualization - but cloud computing >>>>>>also >>>>>> focuses on allowing computing to be delivered as a service. >>>>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>>>> _______________________________________________ >>>>>> CLucene-developers mailing list >>>>>> CLu...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>>> >>>>> >>>>>---------------------------------------------------------------------- >>>>>--- >>>>> ----- >>>>> Virtualization& Cloud Management Using Capacity Planning Cloud >>>>> computing makes use of virtualization - but cloud computing also >>>>>focuses >>>>> on allowing computing to be delivered as a service. >>>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>>> _______________________________________________ >>>>> CLucene-developers mailing list >>>>> CLu...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>>> >>>>> >>>>> >>>>>---------------------------------------------------------------------- >>>>>--- >>>>> ----- >>>>> Virtualization& Cloud Management Using Capacity Planning >>>>> Cloud computing makes use of virtualization - but cloud computing >>>>> also focuses on allowing computing to be delivered as a service. >>>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>>> _______________________________________________ >>>>> CLucene-developers mailing list >>>>> CLu...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>> >>>>----------------------------------------------------------------------- >>>>--- >>>> ---- >>>> Virtualization& Cloud Management Using Capacity Planning >>>> Cloud computing makes use of virtualization - but cloud computing >>>> also focuses on allowing computing to be delivered as a service. >>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> >>> >>>------------------------------------------------------------------------ >>>------ >>> Virtualization& Cloud Management Using Capacity Planning >>> Cloud computing makes use of virtualization - but cloud computing >>> also focuses on allowing computing to be delivered as a service. >>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >>------------------------------------------------------------------------- >>----- >> Virtualization& Cloud Management Using Capacity Planning >> Cloud computing makes use of virtualization - but cloud computing >> also focuses on allowing computing to be delivered as a service. >> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >> >>------------------------------------------------------------------------- >>----- >> Virtualization& Cloud Management Using Capacity Planning >> Cloud computing makes use of virtualization - but cloud computing >> also focuses on allowing computing to be delivered as a service. >> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > > >-------------------------------------------------------------------------- >---- >Virtualization & Cloud Management Using Capacity Planning >Cloud computing makes use of virtualization - but cloud computing >also focuses on allowing computing to be delivered as a service. >http://www.accelacomm.com/jaw/sfnl/114/51521223/ >_______________________________________________ >CLucene-developers mailing list >CLu...@li... >https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Ahmed <ci7...@gm...> - 2012-02-23 22:39:20
|
Hi 2 days ago i run into the same problem, if you want to install contrib-libs add this lines to (at the end) src/contrib-lib/CmakeList.txt: install(TARGETS clucene-contribs-lib DESTINATION ${LIB_DESTINATION} COMPONENT runtime ) Le 23/02/2012 04:40, Vivien Meng a écrit : > Hi Ben: > > Thanks for your help. > > As I am just at the beginning of transforming myself from a Windows .Net programmer to Mac programmer, not very sure how to deal with cmake properly yet, but I'll have a go. > > Truly grateful for your quick responses. > > -----Original Message----- > From: Ben van Klinken [mailto:bva...@gm...] > Sent: Thursday, 23 February 2012 1:19 PM > To: clu...@li... > Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib folder > > hmm, i think it's not in the install list. > > you can modify the src/contrib-lib/CmakeList.txt file to install the headers and libs. Have a look at src/core/Cmakelist.txt for wherever > install() is called. > > basically you'd need to install the contents of HEADERS and the library itself. > > ben > > On 23 February 2012 12:02, Vivien Meng<V....@qs...> wrote: >> Hi Ben: >> >> >> We did not get any error, but no where we can find the installed library. >> >> The following is the screen shot for the command: >> >> vivienm-mac0603:contribs-lib VMeng$ make install [ 7%] Built target >> clucene-shared [ 74%] Built target clucene-core [100%] Built target >> clucene-contribs-lib Install the project... >> -- Install configuration: "RelWithDebInfo" >> >> >> Thanks >> >> >> On 23/02/12 12:31 PM, "Ben van Klinken"<bva...@gm...> wrote: >> >>> What error are you getting? >>> ben >>> >>> On 23 February 2012 11:10, Vivien Meng<V....@qs...> wrote: >>>> Hi Ben: >>>> >>>> >>>> Thanks so much for your help. >>>> >>>> Using your suggestion, I get an Xcode project for >>>> clucene-contribes-lib, however, the project builds but fails to install. >>>> >>>> So for clucene-contribues-lib, make works, but make install does not >>>> work. >>>> >>>> Any further suggestions? >>>> >>>> Thanks again. >>>> >>>> >>>> >>>> -----Original Message----- >>>> From: Ben van Klinken [mailto:bva...@gm...] >>>> Sent: Thursday, 23 February 2012 11:06 AM >>>> To: clu...@li... >>>> Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib >>>> folder >>>> >>>> Hi, >>>> >>>> You create the contribs lib from the root project still.: >>>> >>>> so in<clucene>/ you do >>>> >>>> cmake -DBUILD_CONTRIBS_LIB=ON . >>>> >>>> and then make clucene-contribs-lib >>>> >>>> haven't used it for a while, so let us know how you go >>>> >>>> cheers >>>> ben >>>> >>>> On 23 February 2012 09:28, Vivien Meng<V....@qs...> wrote: >>>>> To whom this may concern: >>>>> >>>>> >>>>> I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. >>>>> >>>>> I'd like to make Xcode project for snowball to build a library file, >>>>> but when I try to use following cmake command line in the contribs-lib >>>>> directory: >>>>> cmake -G Xcode >>>>> >>>>> I get the following errors: >>>>> >>>>> include could not find load file: DefineOptions >>>>> >>>>> Unknown CMake command "DEFINE_OPTIONS". >>>>> >>>>> How do I fix this problem? >>>>> >>>>> >>>>> Thanks in advance. >>>>> >>>>> >>>>> Vivien >>>>> >>>>> ---------------------------------------------------------------------- >>>>> -------- Virtualization& Cloud Management Using Capacity Planning >>>>> Cloud computing makes use of virtualization - but cloud computing also >>>>> focuses on allowing computing to be delivered as a service. >>>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>>> _______________________________________________ >>>>> CLucene-developers mailing list >>>>> CLu...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>> >>>> ------------------------------------------------------------------------- >>>> ----- >>>> Virtualization& Cloud Management Using Capacity Planning Cloud >>>> computing makes use of virtualization - but cloud computing also focuses >>>> on allowing computing to be delivered as a service. >>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>> >>>> >>>> ------------------------------------------------------------------------- >>>> ----- >>>> Virtualization& Cloud Management Using Capacity Planning >>>> Cloud computing makes use of virtualization - but cloud computing >>>> also focuses on allowing computing to be delivered as a service. >>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> -------------------------------------------------------------------------- >>> ---- >>> Virtualization& Cloud Management Using Capacity Planning >>> Cloud computing makes use of virtualization - but cloud computing >>> also focuses on allowing computing to be delivered as a service. >>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >> ------------------------------------------------------------------------------ >> Virtualization& Cloud Management Using Capacity Planning >> Cloud computing makes use of virtualization - but cloud computing >> also focuses on allowing computing to be delivered as a service. >> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > ------------------------------------------------------------------------------ > Virtualization& Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > > ------------------------------------------------------------------------------ > Virtualization& Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Vivien M. <V....@qs...> - 2012-02-23 04:40:56
|
Hi Ben: Thanks for your help. As I am just at the beginning of transforming myself from a Windows .Net programmer to Mac programmer, not very sure how to deal with cmake properly yet, but I'll have a go. Truly grateful for your quick responses. -----Original Message----- From: Ben van Klinken [mailto:bva...@gm...] Sent: Thursday, 23 February 2012 1:19 PM To: clu...@li... Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib folder hmm, i think it's not in the install list. you can modify the src/contrib-lib/CmakeList.txt file to install the headers and libs. Have a look at src/core/Cmakelist.txt for wherever install() is called. basically you'd need to install the contents of HEADERS and the library itself. ben On 23 February 2012 12:02, Vivien Meng <V....@qs...> wrote: > Hi Ben: > > > We did not get any error, but no where we can find the installed library. > > The following is the screen shot for the command: > > vivienm-mac0603:contribs-lib VMeng$ make install [ 7%] Built target > clucene-shared [ 74%] Built target clucene-core [100%] Built target > clucene-contribs-lib Install the project... > -- Install configuration: "RelWithDebInfo" > > > Thanks > > > On 23/02/12 12:31 PM, "Ben van Klinken" <bva...@gm...> wrote: > >>What error are you getting? >>ben >> >>On 23 February 2012 11:10, Vivien Meng <V....@qs...> wrote: >>> Hi Ben: >>> >>> >>> Thanks so much for your help. >>> >>> Using your suggestion, I get an Xcode project for >>>clucene-contribes-lib, however, the project builds but fails to install. >>> >>> So for clucene-contribues-lib, make works, but make install does not >>>work. >>> >>> Any further suggestions? >>> >>> Thanks again. >>> >>> >>> >>> -----Original Message----- >>> From: Ben van Klinken [mailto:bva...@gm...] >>> Sent: Thursday, 23 February 2012 11:06 AM >>> To: clu...@li... >>> Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib >>>folder >>> >>> Hi, >>> >>> You create the contribs lib from the root project still.: >>> >>> so in <clucene>/ you do >>> >>> cmake -DBUILD_CONTRIBS_LIB=ON . >>> >>> and then make clucene-contribs-lib >>> >>> haven't used it for a while, so let us know how you go >>> >>> cheers >>> ben >>> >>> On 23 February 2012 09:28, Vivien Meng <V....@qs...> wrote: >>>> To whom this may concern: >>>> >>>> >>>> I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. >>>> >>>> I'd like to make Xcode project for snowball to build a library file, >>>>but when I try to use following cmake command line in the contribs-lib >>>>directory: >>>> cmake -G Xcode >>>> >>>> I get the following errors: >>>> >>>> include could not find load file: DefineOptions >>>> >>>> Unknown CMake command "DEFINE_OPTIONS". >>>> >>>> How do I fix this problem? >>>> >>>> >>>> Thanks in advance. >>>> >>>> >>>> Vivien >>>> >>>> ---------------------------------------------------------------------- >>>> -------- Virtualization & Cloud Management Using Capacity Planning >>>> Cloud computing makes use of virtualization - but cloud computing also >>>> focuses on allowing computing to be delivered as a service. >>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> >>> >>>------------------------------------------------------------------------- >>>----- >>> Virtualization & Cloud Management Using Capacity Planning Cloud >>>computing makes use of virtualization - but cloud computing also focuses >>>on allowing computing to be delivered as a service. >>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> >>> >>>------------------------------------------------------------------------- >>>----- >>> Virtualization & Cloud Management Using Capacity Planning >>> Cloud computing makes use of virtualization - but cloud computing >>> also focuses on allowing computing to be delivered as a service. >>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >>-------------------------------------------------------------------------- >>---- >>Virtualization & Cloud Management Using Capacity Planning >>Cloud computing makes use of virtualization - but cloud computing >>also focuses on allowing computing to be delivered as a service. >>http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>_______________________________________________ >>CLucene-developers mailing list >>CLu...@li... >>https://lists.sourceforge.net/lists/listinfo/clucene-developers > > > ------------------------------------------------------------------------------ > Virtualization & Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers ------------------------------------------------------------------------------ Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing also focuses on allowing computing to be delivered as a service. http://www.accelacomm.com/jaw/sfnl/114/51521223/ _______________________________________________ CLucene-developers mailing list CLu...@li... https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Ben v. K. <bva...@gm...> - 2012-02-23 02:19:53
|
hmm, i think it's not in the install list. you can modify the src/contrib-lib/CmakeList.txt file to install the headers and libs. Have a look at src/core/Cmakelist.txt for wherever install() is called. basically you'd need to install the contents of HEADERS and the library itself. ben On 23 February 2012 12:02, Vivien Meng <V....@qs...> wrote: > Hi Ben: > > > We did not get any error, but no where we can find the installed library. > > The following is the screen shot for the command: > > vivienm-mac0603:contribs-lib VMeng$ make install > [ 7%] Built target clucene-shared > [ 74%] Built target clucene-core > [100%] Built target clucene-contribs-lib > Install the project... > -- Install configuration: "RelWithDebInfo" > > > Thanks > > > On 23/02/12 12:31 PM, "Ben van Klinken" <bva...@gm...> wrote: > >>What error are you getting? >>ben >> >>On 23 February 2012 11:10, Vivien Meng <V....@qs...> wrote: >>> Hi Ben: >>> >>> >>> Thanks so much for your help. >>> >>> Using your suggestion, I get an Xcode project for >>>clucene-contribes-lib, however, the project builds but fails to install. >>> >>> So for clucene-contribues-lib, make works, but make install does not >>>work. >>> >>> Any further suggestions? >>> >>> Thanks again. >>> >>> >>> >>> -----Original Message----- >>> From: Ben van Klinken [mailto:bva...@gm...] >>> Sent: Thursday, 23 February 2012 11:06 AM >>> To: clu...@li... >>> Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib >>>folder >>> >>> Hi, >>> >>> You create the contribs lib from the root project still.: >>> >>> so in <clucene>/ you do >>> >>> cmake -DBUILD_CONTRIBS_LIB=ON . >>> >>> and then make clucene-contribs-lib >>> >>> haven't used it for a while, so let us know how you go >>> >>> cheers >>> ben >>> >>> On 23 February 2012 09:28, Vivien Meng <V....@qs...> wrote: >>>> To whom this may concern: >>>> >>>> >>>> I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. >>>> >>>> I'd like to make Xcode project for snowball to build a library file, >>>>but when I try to use following cmake command line in the contribs-lib >>>>directory: >>>> cmake -G Xcode >>>> >>>> I get the following errors: >>>> >>>> include could not find load file: DefineOptions >>>> >>>> Unknown CMake command "DEFINE_OPTIONS". >>>> >>>> How do I fix this problem? >>>> >>>> >>>> Thanks in advance. >>>> >>>> >>>> Vivien >>>> >>>> ---------------------------------------------------------------------- >>>> -------- Virtualization & Cloud Management Using Capacity Planning >>>> Cloud computing makes use of virtualization - but cloud computing also >>>> focuses on allowing computing to be delivered as a service. >>>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> >>> >>>------------------------------------------------------------------------- >>>----- >>> Virtualization & Cloud Management Using Capacity Planning Cloud >>>computing makes use of virtualization - but cloud computing also focuses >>>on allowing computing to be delivered as a service. >>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> >>> >>>------------------------------------------------------------------------- >>>----- >>> Virtualization & Cloud Management Using Capacity Planning >>> Cloud computing makes use of virtualization - but cloud computing >>> also focuses on allowing computing to be delivered as a service. >>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >>-------------------------------------------------------------------------- >>---- >>Virtualization & Cloud Management Using Capacity Planning >>Cloud computing makes use of virtualization - but cloud computing >>also focuses on allowing computing to be delivered as a service. >>http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>_______________________________________________ >>CLucene-developers mailing list >>CLu...@li... >>https://lists.sourceforge.net/lists/listinfo/clucene-developers > > > ------------------------------------------------------------------------------ > Virtualization & Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Vivien M. <V....@qs...> - 2012-02-23 02:02:59
|
Hi Ben: We did not get any error, but no where we can find the installed library. The following is the screen shot for the command: vivienm-mac0603:contribs-lib VMeng$ make install [ 7%] Built target clucene-shared [ 74%] Built target clucene-core [100%] Built target clucene-contribs-lib Install the project... -- Install configuration: "RelWithDebInfo" Thanks On 23/02/12 12:31 PM, "Ben van Klinken" <bva...@gm...> wrote: >What error are you getting? >ben > >On 23 February 2012 11:10, Vivien Meng <V....@qs...> wrote: >> Hi Ben: >> >> >> Thanks so much for your help. >> >> Using your suggestion, I get an Xcode project for >>clucene-contribes-lib, however, the project builds but fails to install. >> >> So for clucene-contribues-lib, make works, but make install does not >>work. >> >> Any further suggestions? >> >> Thanks again. >> >> >> >> -----Original Message----- >> From: Ben van Klinken [mailto:bva...@gm...] >> Sent: Thursday, 23 February 2012 11:06 AM >> To: clu...@li... >> Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib >>folder >> >> Hi, >> >> You create the contribs lib from the root project still.: >> >> so in <clucene>/ you do >> >> cmake -DBUILD_CONTRIBS_LIB=ON . >> >> and then make clucene-contribs-lib >> >> haven't used it for a while, so let us know how you go >> >> cheers >> ben >> >> On 23 February 2012 09:28, Vivien Meng <V....@qs...> wrote: >>> To whom this may concern: >>> >>> >>> I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. >>> >>> I'd like to make Xcode project for snowball to build a library file, >>>but when I try to use following cmake command line in the contribs-lib >>>directory: >>> cmake -G Xcode >>> >>> I get the following errors: >>> >>> include could not find load file: DefineOptions >>> >>> Unknown CMake command "DEFINE_OPTIONS". >>> >>> How do I fix this problem? >>> >>> >>> Thanks in advance. >>> >>> >>> Vivien >>> >>> ---------------------------------------------------------------------- >>> -------- Virtualization & Cloud Management Using Capacity Planning >>> Cloud computing makes use of virtualization - but cloud computing also >>> focuses on allowing computing to be delivered as a service. >>> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >> >>------------------------------------------------------------------------- >>----- >> Virtualization & Cloud Management Using Capacity Planning Cloud >>computing makes use of virtualization - but cloud computing also focuses >>on allowing computing to be delivered as a service. >> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >> >>------------------------------------------------------------------------- >>----- >> Virtualization & Cloud Management Using Capacity Planning >> Cloud computing makes use of virtualization - but cloud computing >> also focuses on allowing computing to be delivered as a service. >> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >-------------------------------------------------------------------------- >---- >Virtualization & Cloud Management Using Capacity Planning >Cloud computing makes use of virtualization - but cloud computing >also focuses on allowing computing to be delivered as a service. >http://www.accelacomm.com/jaw/sfnl/114/51521223/ >_______________________________________________ >CLucene-developers mailing list >CLu...@li... >https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Ben v. K. <bva...@gm...> - 2012-02-23 01:32:11
|
What error are you getting? ben On 23 February 2012 11:10, Vivien Meng <V....@qs...> wrote: > Hi Ben: > > > Thanks so much for your help. > > Using your suggestion, I get an Xcode project for clucene-contribes-lib, however, the project builds but fails to install. > > So for clucene-contribues-lib, make works, but make install does not work. > > Any further suggestions? > > Thanks again. > > > > -----Original Message----- > From: Ben van Klinken [mailto:bva...@gm...] > Sent: Thursday, 23 February 2012 11:06 AM > To: clu...@li... > Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib folder > > Hi, > > You create the contribs lib from the root project still.: > > so in <clucene>/ you do > > cmake -DBUILD_CONTRIBS_LIB=ON . > > and then make clucene-contribs-lib > > haven't used it for a while, so let us know how you go > > cheers > ben > > On 23 February 2012 09:28, Vivien Meng <V....@qs...> wrote: >> To whom this may concern: >> >> >> I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. >> >> I'd like to make Xcode project for snowball to build a library file, but when I try to use following cmake command line in the contribs-lib directory: >> cmake -G Xcode >> >> I get the following errors: >> >> include could not find load file: DefineOptions >> >> Unknown CMake command "DEFINE_OPTIONS". >> >> How do I fix this problem? >> >> >> Thanks in advance. >> >> >> Vivien >> >> ---------------------------------------------------------------------- >> -------- Virtualization & Cloud Management Using Capacity Planning >> Cloud computing makes use of virtualization - but cloud computing also >> focuses on allowing computing to be delivered as a service. >> http://www.accelacomm.com/jaw/sfnl/114/51521223/ >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > > ------------------------------------------------------------------------------ > Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > > ------------------------------------------------------------------------------ > Virtualization & Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Vivien M. <V....@qs...> - 2012-02-23 01:11:35
|
Hi Ben: Thanks so much for your help. Using your suggestion, I get an Xcode project for clucene-contribes-lib, however, the project builds but fails to install. So for clucene-contribues-lib, make works, but make install does not work. Any further suggestions? Thanks again. -----Original Message----- From: Ben van Klinken [mailto:bva...@gm...] Sent: Thursday, 23 February 2012 11:06 AM To: clu...@li... Subject: Re: [CLucene-dev] Help on CMakeLists.txt within contribs-lib folder Hi, You create the contribs lib from the root project still.: so in <clucene>/ you do cmake -DBUILD_CONTRIBS_LIB=ON . and then make clucene-contribs-lib haven't used it for a while, so let us know how you go cheers ben On 23 February 2012 09:28, Vivien Meng <V....@qs...> wrote: > To whom this may concern: > > > I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. > > I'd like to make Xcode project for snowball to build a library file, but when I try to use following cmake command line in the contribs-lib directory: > cmake -G Xcode > > I get the following errors: > > include could not find load file: DefineOptions > > Unknown CMake command "DEFINE_OPTIONS". > > How do I fix this problem? > > > Thanks in advance. > > > Vivien > > ---------------------------------------------------------------------- > -------- Virtualization & Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing also > focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers ------------------------------------------------------------------------------ Virtualization & Cloud Management Using Capacity Planning Cloud computing makes use of virtualization - but cloud computing also focuses on allowing computing to be delivered as a service. http://www.accelacomm.com/jaw/sfnl/114/51521223/ _______________________________________________ CLucene-developers mailing list CLu...@li... https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Ben v. K. <bva...@gm...> - 2012-02-23 00:06:28
|
Hi, You create the contribs lib from the root project still.: so in <clucene>/ you do cmake -DBUILD_CONTRIBS_LIB=ON . and then make clucene-contribs-lib haven't used it for a while, so let us know how you go cheers ben On 23 February 2012 09:28, Vivien Meng <V....@qs...> wrote: > To whom this may concern: > > > I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. > > I'd like to make Xcode project for snowball to build a library file, but when I try to use following cmake command line in the contribs-lib directory: > cmake –G Xcode > > I get the following errors: > > include could not find load file: DefineOptions > > Unknown CMake command "DEFINE_OPTIONS". > > How do I fix this problem? > > > Thanks in advance. > > > Vivien > > ------------------------------------------------------------------------------ > Virtualization & Cloud Management Using Capacity Planning > Cloud computing makes use of virtualization - but cloud computing > also focuses on allowing computing to be delivered as a service. > http://www.accelacomm.com/jaw/sfnl/114/51521223/ > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Vivien M. <V....@qs...> - 2012-02-22 23:28:53
|
To whom this may concern: I downloaded clucene-core-2.3.3.4.tar.gz. Unzipped all the files. I'd like to make Xcode project for snowball to build a library file, but when I try to use following cmake command line in the contribs-lib directory: cmake –G Xcode I get the following errors: include could not find load file: DefineOptions Unknown CMake command "DEFINE_OPTIONS". How do I fix this problem? Thanks in advance. Vivien |
From: Ben v. K. <bva...@gm...> - 2012-02-03 20:49:52
|
Which version are you using? There's an IndexModifier class which helps with these sorts of scenarios ben On 4 February 2012 00:39, JAVIER <ja...@ip...> wrote: > I built clucene for iOS, but I'm having some problems with a > memory leak when updating documents. > > I need to add some aditional text to a indexed document, but > the only store of indexed data is lucene. > So, I need to search first for the document, then delete old > document and add new document. > > If searcher and writer are opened at the same time, it leaks memory. > > ¿Any help other than not searching and indexing at the same time? > > > ------------------------------------------------------------------------------ > Try before you buy = See our experts in action! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-dev2 > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: JAVIER <ja...@ip...> - 2012-02-03 14:45:22
|
I built clucene for iOS, but I'm having some problems with a memory leak when updating documents. I need to add some aditional text to a indexed document, but the only store of indexed data is lucene. So, I need to search first for the document, then delete old document and add new document. If searcher and writer are opened at the same time, it leaks memory. ¿Any help other than not searching and indexing at the same time? |
From: <du...@id...> - 2012-01-18 16:51:18
|
When stress clucene 2.3.3.4, we have been getting an Access Violation in lucene::index::Payload::setData. We got a similar error with 0.9.21b. We are creating separate indexSearchers for each search which is not recommended but doesn't look like it should be a problem. We are using the static lucene::queryParser::QueryParser::parse due to having ported from 0.9.21b. I was planning on trying to create a simple test program that demonstrates the problem but figured I'd ask now in case someone recognizes the problem. |
From: 曾小伟 <zx...@16...> - 2011-12-23 07:17:49
|
Hi all, when I trying to migrate clucene to 0.9.23,I encounter a compiler error. What I hava done are: 1, Download clucene 0.9.23 from sourceforge. 2, Install cmake in my ubuntu 10.10 by "#sudo apt-get install cmake", the version of cmake is 2.8.2 3, run cmake in clucene 0.9.23 folder : "#cmake ./", and I got a makefile. 4, run make "#make", and I got some compiler error as : In file included from /home/xwzeng/cluceneDebug/clucene-core-0.9.23.0-Source/src/core/CLucene/StdHeader.cpp:8: /home/xwzeng/cluceneDebug/clucene-core-0.9.23.0-Source/src/shared/CLucene/util/Misc.h:15: error: int64_t does not name a type ........ I read some cmake tutorials, and read cmakelist.txt file in the project, I find int64_t type is defined in a cmakelist.txt file that contain in clucene\shared, the type defined by a marco CHOOSE_TYPE(uint64_t 8 unsigned "uint64_t;long long;__int64") but I hava no ideal for why it dose not work. best wishes Zeng. At 2011-12-20 15:48:56,"Veit Jahns" <nun...@go...> wrote: >Hi Zeng, > >0.9.21 isn't really supported anymore. As there is a newer version >0.9.23, release a while ago, my proposal would be tho migrate to the >newer version. There we observed similiar issues and resolved them. > >If you, for some reason, have to stay with 0.9.21, then it might by a >good idea to look in the commit history of 0.9.23. Maybe you got some >hints, what the reason for your error is. > >Kind regards, > >Veit > >2011/12/19 曾小伟 <zx...@16...>: >> hi all, >> I using clucene 0.9.2.1 build an index,and this index has more than 1 >> million doc in it. >> when I searching something in multithread mode(more the 20 threads and each >> thread searching as hard as it can). >> >> The crash issue occured after the searhc test begin 2~10 hours. >> >> Is there anyone who had a similar issue, or tell me how to resolve the >> issue. >> thanks. >> >> here is is the Backtrace of the crashing: >> ___________________________________________________________________________ >> *** glibc detected *** <unknown>: corrupted double-linked list: >> 0x00002aaaac1a1e10 *** >> ======= Backtrace: ========= >> /lib64/libc.so.6[0x3df96733d0] >> /lib64/libc.so.6(__libc_malloc+0x6e)[0x3df9674e2e] >> /usr/lib64/libstdc++.so.6(_Znwm+0x1d)[0x3dfcebd1dd] >> /usr/lib64/libstdc++.so.6(_Znam+0x9)[0x3dfcebd2f9] >> ./libSearch.so(_Z12lucenewcsdupPKw+0x2c)[0x2b7b4404c55c] >> ./libSearch.so(_ZN6lucene5index4Term3setEPKwS3_b+0x125)[0x2b7b44031aa5] >> ./libSearch.so(_ZN6lucene5index15TermInfosReader17ensureIndexIsReadEv+0x196)[0x2b7b44032476] >> ./libSearch.so(_ZN6lucene5index15TermInfosReader3getEPKNS0_4TermE+0x3d)[0x2b7b4403287d] >> ./libSearch.so(_ZNK6lucene5index13SegmentReader7docFreqEPKNS0_4TermE+0xf)[0x2b7b4402b6cf] >> ./libSearch.so(_ZN6lucene6search10Similarity3idfEPNS_5index4TermEPNS0_8SearcherE+0x45)[0x2b7b44049d85] >> ./libSearch.so(_ZN6lucene6search9TermQuery10TermWeight19sumOfSquaredWeightsEv+0x38)[0x2b7b4404ab78] >> ./libSearch.so(_ZN6lucene6search5Query6weightEPNS0_8SearcherE+0x42)[0x2b7b44048f82] >> ./libSearch.so(_ZN6lucene6search13IndexSearcher7_searchEPNS0_5QueryEPNS0_6FilterEi+0x2b)[0x2b7b4404394b] >> ./libSearch.so(_ZN6lucene6search4Hits11getMoreDocsEm+0x165)[0x2b7b44042995] >> ./libSearch.so(_ZN6lucene6search4HitsC1EPNS0_8SearcherEPNS0_5QueryEPNS0_6FilterEPKNS0_4SortE+0xc9)[0x2b7b44042ee9] >> ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryEPNS0_6FilterE+0x3e)[0x2b7b44009a02] >> ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryE+0x22)[0x2b7b44009a58] >> ./libSearch.so(_Z21SearchStringRSbIwSt11char_traitsIwESaIwEES3_+0x504)[0x2b7b44007190] >> [0x403b74] >> [0x402674] >> /lib64/libpthread.so.0[0x3df9e0673d] >> /lib64/libc.so.6(clone+0x6d)[0x3df96d44bd] >> ======= Memory map: ======== >> 00400000-00406000 r-xp 00000000 08:0a 13516808 >> /usr/local/apps/SearchLib/code/CluceneTest/ >> 00605000-00606000 rw-p 00005000 08:0a 13516808 >> /usr/local/apps/SearchLib/code/CluceneTest/ >> 135cf000-14754000 rw-p 135cf000 00:00 0 >> [heap] >> 40390000-40391000 ---p 40390000 00:00 0 >> 40391000-40d91000 rw-p 40391000 00:00 0 >> 40d91000-40d92000 ---p 40d91000 00:00 0 >> 40d92000-41792000 rw-p 40d92000 00:00 0 >> 41792000-41793000 ---p 41792000 00:00 0 >> 41793000-42193000 rw-p 41793000 00:00 0 >> 42193000-42194000 ---p 42193000 00:00 0 >> 42194000-42b94000 rw-p 42194000 00:00 0 >> 42b94000-42b95000 ---p 42b94000 00:00 0 >> 42b95000-43595000 rw-p 42b95000 00:00 0 >> 43595000-43596000 ---p 43595000 00:00 0 >> 43596000-43f96000 rw-p 43596000 00:00 0 >> 43f96000-43f97000 ---p 43f96000 00:00 0 >> 43f97000-44997000 rw-p 43f97000 00:00 0 >> 44997000-44998000 ---p 44997000 00:00 0 >> 44998000-45398000 rw-p 44998000 00:00 0 >> 45398000-45399000 ---p 45398000 00:00 0 >> 45399000-45d99000 rw-p 45399000 00:00 0 >> 45d99000-45d9a000 ---p 45d99000 00:00 0 >> 45d9a000-4679a000 rw-p 45d9a000 00:00 0 >> 4679a000-4679b000 ---p 4679a000 00:00 0 >> 4679b000-4719b000 rw-p 4679b000 00:00 0 >> 4719b000-4719c000 ---p 4719b000 00:00 0 >> 4719c000-47b9c000 rw-p 4719c000 00:00 0 >> 47b9c000-47b9d000 ---p 47b9c000 00:00 0 >> 47b9d000-4859d000 rw-p 47b9d000 00:00 0 >> 4859d000-4859e000 ---p 4859d000 00:00 0 >> 4859e000-48f9e000 rw-p 4859e000 00:00 0 >> 48f9e000-48f9f000 ---p 48f9e000 00:00 0 >> 48f9f000-4999f000 rw-p 48f9f000 00:00 0 >> 4999f000-499a0000 ---p 4999f000 00:00 0 >> 499a0000-4a3a0000 rw-p 499a0000 00:00 0 >> 4a3a0000-4a3a1000 ---p 4a3a0000 00:00 0 >> 4a3a1000-4ada1000 rw-p 4a3a1000 00:00 0 >> 4ada1000-4ada2000 ---p 4ada1000 00:00 0 >> 4ada2000-4b7a2000 rw-p 4ada2000 00:00 0 >> 4b7a2000-4b7a3000 ---p 4b7a2000 00:00 0 >> 4b7a3000-4c1a3000 rw-p 4b7a3000 00:00 0 >> 4c1a3000-4c1a4000 ---p 4c1a3000 00:00 0 >> 4c1a4000-4cba4000 rw-p 4c1a4000 00:00 0 >> 4cba4000-4cba5000 ---p 4cba4000 00:00 0 >> 4cba5000-4d5a5000 rw-p 4cba5000 00:00 0 >> 4d5a5000-4d5a6000 ---p 4d5a5000 00:00 0 >> 4d5a6000-4dfa6000 rw-p 4d5a6000 00:00 0 >> 4dfa6000-4dfa7000 ---p 4dfa6000 00:00 0 >> ___________________________________________________________________________ >> >> >> >> Best wishes, >> Zeng >> >> >> >> >> ------------------------------------------------------------------------------ >> Learn Windows Azure Live! Tuesday, Dec 13, 2011 >> Microsoft is holding a special Learn Windows Azure training event for >> developers. It will provide a great way to learn Windows Azure and what it >> provides. You can attend the event by watching it streamed LIVE online. >> Learn more at http://p.sf.net/sfu/ms-windowsazure >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> > >------------------------------------------------------------------------------ >Write once. Port to many. >Get the SDK and tools to simplify cross-platform app development. Create >new or port existing apps to sell to consumers worldwide. Explore the >Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >http://p.sf.net/sfu/intel-appdev >_______________________________________________ >CLucene-developers mailing list >CLu...@li... >https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: 曾小伟 <zx...@16...> - 2011-12-20 09:29:51
|
Hi Veit, since I found 0.9.21 is a stable version and 0.9.23 is an unstable version. I had not try to migrate to 0.9.23 version in my recently work... I will try to use 0.9.23 soon after, thanks a lot. Best wishes, Zeng At 2011-12-20 15:48:56,"Veit Jahns" <nun...@go...> wrote: >Hi Zeng, > >0.9.21 isn't really supported anymore. As there is a newer version >0.9.23, release a while ago, my proposal would be tho migrate to the >newer version. There we observed similiar issues and resolved them. > >If you, for some reason, have to stay with 0.9.21, then it might by a >good idea to look in the commit history of 0.9.23. Maybe you got some >hints, what the reason for your error is. > >Kind regards, > >Veit > >2011/12/19 曾小伟 <zx...@16...>: >> hi all, >> I using clucene 0.9.2.1 build an index,and this index has more than 1 >> million doc in it. >> when I searching something in multithread mode(more the 20 threads and each >> thread searching as hard as it can). >> >> The crash issue occured after the searhc test begin 2~10 hours. >> >> Is there anyone who had a similar issue, or tell me how to resolve the >> issue. >> thanks. >> >> here is is the Backtrace of the crashing: >> ___________________________________________________________________________ >> *** glibc detected *** <unknown>: corrupted double-linked list: >> 0x00002aaaac1a1e10 *** >> ======= Backtrace: ========= >> /lib64/libc.so.6[0x3df96733d0] >> /lib64/libc.so.6(__libc_malloc+0x6e)[0x3df9674e2e] >> /usr/lib64/libstdc++.so.6(_Znwm+0x1d)[0x3dfcebd1dd] >> /usr/lib64/libstdc++.so.6(_Znam+0x9)[0x3dfcebd2f9] >> ./libSearch.so(_Z12lucenewcsdupPKw+0x2c)[0x2b7b4404c55c] >> ./libSearch.so(_ZN6lucene5index4Term3setEPKwS3_b+0x125)[0x2b7b44031aa5] >> ./libSearch.so(_ZN6lucene5index15TermInfosReader17ensureIndexIsReadEv+0x196)[0x2b7b44032476] >> ./libSearch.so(_ZN6lucene5index15TermInfosReader3getEPKNS0_4TermE+0x3d)[0x2b7b4403287d] >> ./libSearch.so(_ZNK6lucene5index13SegmentReader7docFreqEPKNS0_4TermE+0xf)[0x2b7b4402b6cf] >> ./libSearch.so(_ZN6lucene6search10Similarity3idfEPNS_5index4TermEPNS0_8SearcherE+0x45)[0x2b7b44049d85] >> ./libSearch.so(_ZN6lucene6search9TermQuery10TermWeight19sumOfSquaredWeightsEv+0x38)[0x2b7b4404ab78] >> ./libSearch.so(_ZN6lucene6search5Query6weightEPNS0_8SearcherE+0x42)[0x2b7b44048f82] >> ./libSearch.so(_ZN6lucene6search13IndexSearcher7_searchEPNS0_5QueryEPNS0_6FilterEi+0x2b)[0x2b7b4404394b] >> ./libSearch.so(_ZN6lucene6search4Hits11getMoreDocsEm+0x165)[0x2b7b44042995] >> ./libSearch.so(_ZN6lucene6search4HitsC1EPNS0_8SearcherEPNS0_5QueryEPNS0_6FilterEPKNS0_4SortE+0xc9)[0x2b7b44042ee9] >> ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryEPNS0_6FilterE+0x3e)[0x2b7b44009a02] >> ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryE+0x22)[0x2b7b44009a58] >> ./libSearch.so(_Z21SearchStringRSbIwSt11char_traitsIwESaIwEES3_+0x504)[0x2b7b44007190] >> [0x403b74] >> [0x402674] >> /lib64/libpthread.so.0[0x3df9e0673d] >> /lib64/libc.so.6(clone+0x6d)[0x3df96d44bd] >> ======= Memory map: ======== >> 00400000-00406000 r-xp 00000000 08:0a 13516808 >> /usr/local/apps/SearchLib/code/CluceneTest/ >> 00605000-00606000 rw-p 00005000 08:0a 13516808 >> /usr/local/apps/SearchLib/code/CluceneTest/ >> 135cf000-14754000 rw-p 135cf000 00:00 0 >> [heap] >> 40390000-40391000 ---p 40390000 00:00 0 >> 40391000-40d91000 rw-p 40391000 00:00 0 >> 40d91000-40d92000 ---p 40d91000 00:00 0 >> 40d92000-41792000 rw-p 40d92000 00:00 0 >> 41792000-41793000 ---p 41792000 00:00 0 >> 41793000-42193000 rw-p 41793000 00:00 0 >> 42193000-42194000 ---p 42193000 00:00 0 >> 42194000-42b94000 rw-p 42194000 00:00 0 >> 42b94000-42b95000 ---p 42b94000 00:00 0 >> 42b95000-43595000 rw-p 42b95000 00:00 0 >> 43595000-43596000 ---p 43595000 00:00 0 >> 43596000-43f96000 rw-p 43596000 00:00 0 >> 43f96000-43f97000 ---p 43f96000 00:00 0 >> 43f97000-44997000 rw-p 43f97000 00:00 0 >> 44997000-44998000 ---p 44997000 00:00 0 >> 44998000-45398000 rw-p 44998000 00:00 0 >> 45398000-45399000 ---p 45398000 00:00 0 >> 45399000-45d99000 rw-p 45399000 00:00 0 >> 45d99000-45d9a000 ---p 45d99000 00:00 0 >> 45d9a000-4679a000 rw-p 45d9a000 00:00 0 >> 4679a000-4679b000 ---p 4679a000 00:00 0 >> 4679b000-4719b000 rw-p 4679b000 00:00 0 >> 4719b000-4719c000 ---p 4719b000 00:00 0 >> 4719c000-47b9c000 rw-p 4719c000 00:00 0 >> 47b9c000-47b9d000 ---p 47b9c000 00:00 0 >> 47b9d000-4859d000 rw-p 47b9d000 00:00 0 >> 4859d000-4859e000 ---p 4859d000 00:00 0 >> 4859e000-48f9e000 rw-p 4859e000 00:00 0 >> 48f9e000-48f9f000 ---p 48f9e000 00:00 0 >> 48f9f000-4999f000 rw-p 48f9f000 00:00 0 >> 4999f000-499a0000 ---p 4999f000 00:00 0 >> 499a0000-4a3a0000 rw-p 499a0000 00:00 0 >> 4a3a0000-4a3a1000 ---p 4a3a0000 00:00 0 >> 4a3a1000-4ada1000 rw-p 4a3a1000 00:00 0 >> 4ada1000-4ada2000 ---p 4ada1000 00:00 0 >> 4ada2000-4b7a2000 rw-p 4ada2000 00:00 0 >> 4b7a2000-4b7a3000 ---p 4b7a2000 00:00 0 >> 4b7a3000-4c1a3000 rw-p 4b7a3000 00:00 0 >> 4c1a3000-4c1a4000 ---p 4c1a3000 00:00 0 >> 4c1a4000-4cba4000 rw-p 4c1a4000 00:00 0 >> 4cba4000-4cba5000 ---p 4cba4000 00:00 0 >> 4cba5000-4d5a5000 rw-p 4cba5000 00:00 0 >> 4d5a5000-4d5a6000 ---p 4d5a5000 00:00 0 >> 4d5a6000-4dfa6000 rw-p 4d5a6000 00:00 0 >> 4dfa6000-4dfa7000 ---p 4dfa6000 00:00 0 >> ___________________________________________________________________________ >> >> >> >> Best wishes, >> Zeng >> >> >> >> >> ------------------------------------------------------------------------------ >> Learn Windows Azure Live! Tuesday, Dec 13, 2011 >> Microsoft is holding a special Learn Windows Azure training event for >> developers. It will provide a great way to learn Windows Azure and what it >> provides. You can attend the event by watching it streamed LIVE online. >> Learn more at http://p.sf.net/sfu/ms-windowsazure >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> > >------------------------------------------------------------------------------ >Write once. Port to many. >Get the SDK and tools to simplify cross-platform app development. Create >new or port existing apps to sell to consumers worldwide. Explore the >Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join >http://p.sf.net/sfu/intel-appdev >_______________________________________________ >CLucene-developers mailing list >CLu...@li... >https://lists.sourceforge.net/lists/listinfo/clucene-developers |
From: Veit J. <nun...@go...> - 2011-12-20 07:49:05
|
Hi Zeng, 0.9.21 isn't really supported anymore. As there is a newer version 0.9.23, release a while ago, my proposal would be tho migrate to the newer version. There we observed similiar issues and resolved them. If you, for some reason, have to stay with 0.9.21, then it might by a good idea to look in the commit history of 0.9.23. Maybe you got some hints, what the reason for your error is. Kind regards, Veit 2011/12/19 曾小伟 <zx...@16...>: > hi all, > I using clucene 0.9.2.1 build an index,and this index has more than 1 > million doc in it. > when I searching something in multithread mode(more the 20 threads and each > thread searching as hard as it can). > > The crash issue occured after the searhc test begin 2~10 hours. > > Is there anyone who had a similar issue, or tell me how to resolve the > issue. > thanks. > > here is is the Backtrace of the crashing: > ___________________________________________________________________________ > *** glibc detected *** <unknown>: corrupted double-linked list: > 0x00002aaaac1a1e10 *** > ======= Backtrace: ========= > /lib64/libc.so.6[0x3df96733d0] > /lib64/libc.so.6(__libc_malloc+0x6e)[0x3df9674e2e] > /usr/lib64/libstdc++.so.6(_Znwm+0x1d)[0x3dfcebd1dd] > /usr/lib64/libstdc++.so.6(_Znam+0x9)[0x3dfcebd2f9] > ./libSearch.so(_Z12lucenewcsdupPKw+0x2c)[0x2b7b4404c55c] > ./libSearch.so(_ZN6lucene5index4Term3setEPKwS3_b+0x125)[0x2b7b44031aa5] > ./libSearch.so(_ZN6lucene5index15TermInfosReader17ensureIndexIsReadEv+0x196)[0x2b7b44032476] > ./libSearch.so(_ZN6lucene5index15TermInfosReader3getEPKNS0_4TermE+0x3d)[0x2b7b4403287d] > ./libSearch.so(_ZNK6lucene5index13SegmentReader7docFreqEPKNS0_4TermE+0xf)[0x2b7b4402b6cf] > ./libSearch.so(_ZN6lucene6search10Similarity3idfEPNS_5index4TermEPNS0_8SearcherE+0x45)[0x2b7b44049d85] > ./libSearch.so(_ZN6lucene6search9TermQuery10TermWeight19sumOfSquaredWeightsEv+0x38)[0x2b7b4404ab78] > ./libSearch.so(_ZN6lucene6search5Query6weightEPNS0_8SearcherE+0x42)[0x2b7b44048f82] > ./libSearch.so(_ZN6lucene6search13IndexSearcher7_searchEPNS0_5QueryEPNS0_6FilterEi+0x2b)[0x2b7b4404394b] > ./libSearch.so(_ZN6lucene6search4Hits11getMoreDocsEm+0x165)[0x2b7b44042995] > ./libSearch.so(_ZN6lucene6search4HitsC1EPNS0_8SearcherEPNS0_5QueryEPNS0_6FilterEPKNS0_4SortE+0xc9)[0x2b7b44042ee9] > ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryEPNS0_6FilterE+0x3e)[0x2b7b44009a02] > ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryE+0x22)[0x2b7b44009a58] > ./libSearch.so(_Z21SearchStringRSbIwSt11char_traitsIwESaIwEES3_+0x504)[0x2b7b44007190] > [0x403b74] > [0x402674] > /lib64/libpthread.so.0[0x3df9e0673d] > /lib64/libc.so.6(clone+0x6d)[0x3df96d44bd] > ======= Memory map: ======== > 00400000-00406000 r-xp 00000000 08:0a 13516808 > /usr/local/apps/SearchLib/code/CluceneTest/ > 00605000-00606000 rw-p 00005000 08:0a 13516808 > /usr/local/apps/SearchLib/code/CluceneTest/ > 135cf000-14754000 rw-p 135cf000 00:00 0 > [heap] > 40390000-40391000 ---p 40390000 00:00 0 > 40391000-40d91000 rw-p 40391000 00:00 0 > 40d91000-40d92000 ---p 40d91000 00:00 0 > 40d92000-41792000 rw-p 40d92000 00:00 0 > 41792000-41793000 ---p 41792000 00:00 0 > 41793000-42193000 rw-p 41793000 00:00 0 > 42193000-42194000 ---p 42193000 00:00 0 > 42194000-42b94000 rw-p 42194000 00:00 0 > 42b94000-42b95000 ---p 42b94000 00:00 0 > 42b95000-43595000 rw-p 42b95000 00:00 0 > 43595000-43596000 ---p 43595000 00:00 0 > 43596000-43f96000 rw-p 43596000 00:00 0 > 43f96000-43f97000 ---p 43f96000 00:00 0 > 43f97000-44997000 rw-p 43f97000 00:00 0 > 44997000-44998000 ---p 44997000 00:00 0 > 44998000-45398000 rw-p 44998000 00:00 0 > 45398000-45399000 ---p 45398000 00:00 0 > 45399000-45d99000 rw-p 45399000 00:00 0 > 45d99000-45d9a000 ---p 45d99000 00:00 0 > 45d9a000-4679a000 rw-p 45d9a000 00:00 0 > 4679a000-4679b000 ---p 4679a000 00:00 0 > 4679b000-4719b000 rw-p 4679b000 00:00 0 > 4719b000-4719c000 ---p 4719b000 00:00 0 > 4719c000-47b9c000 rw-p 4719c000 00:00 0 > 47b9c000-47b9d000 ---p 47b9c000 00:00 0 > 47b9d000-4859d000 rw-p 47b9d000 00:00 0 > 4859d000-4859e000 ---p 4859d000 00:00 0 > 4859e000-48f9e000 rw-p 4859e000 00:00 0 > 48f9e000-48f9f000 ---p 48f9e000 00:00 0 > 48f9f000-4999f000 rw-p 48f9f000 00:00 0 > 4999f000-499a0000 ---p 4999f000 00:00 0 > 499a0000-4a3a0000 rw-p 499a0000 00:00 0 > 4a3a0000-4a3a1000 ---p 4a3a0000 00:00 0 > 4a3a1000-4ada1000 rw-p 4a3a1000 00:00 0 > 4ada1000-4ada2000 ---p 4ada1000 00:00 0 > 4ada2000-4b7a2000 rw-p 4ada2000 00:00 0 > 4b7a2000-4b7a3000 ---p 4b7a2000 00:00 0 > 4b7a3000-4c1a3000 rw-p 4b7a3000 00:00 0 > 4c1a3000-4c1a4000 ---p 4c1a3000 00:00 0 > 4c1a4000-4cba4000 rw-p 4c1a4000 00:00 0 > 4cba4000-4cba5000 ---p 4cba4000 00:00 0 > 4cba5000-4d5a5000 rw-p 4cba5000 00:00 0 > 4d5a5000-4d5a6000 ---p 4d5a5000 00:00 0 > 4d5a6000-4dfa6000 rw-p 4d5a6000 00:00 0 > 4dfa6000-4dfa7000 ---p 4dfa6000 00:00 0 > ___________________________________________________________________________ > > > > Best wishes, > Zeng > > > > > ------------------------------------------------------------------------------ > Learn Windows Azure Live! Tuesday, Dec 13, 2011 > Microsoft is holding a special Learn Windows Azure training event for > developers. It will provide a great way to learn Windows Azure and what it > provides. You can attend the event by watching it streamed LIVE online. > Learn more at http://p.sf.net/sfu/ms-windowsazure > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > |
From: 曾小伟 <zx...@16...> - 2011-12-19 09:00:20
|
hi all, I using clucene 0.9.2.1 build an index,and this index has more than 1 million doc in it. when I searching something in multithread mode(more the 20 threads and each thread searching as hard as it can). The crash issue occured after the searhc test begin 2~10 hours. Is there anyone who had a similar issue, or tell me how to resolve the issue. thanks. here is is the Backtrace of the crashing: ___________________________________________________________________________ *** glibc detected *** <unknown>: corrupted double-linked list: 0x00002aaaac1a1e10 *** ======= Backtrace: ========= /lib64/libc.so.6[0x3df96733d0] /lib64/libc.so.6(__libc_malloc+0x6e)[0x3df9674e2e] /usr/lib64/libstdc++.so.6(_Znwm+0x1d)[0x3dfcebd1dd] /usr/lib64/libstdc++.so.6(_Znam+0x9)[0x3dfcebd2f9] ./libSearch.so(_Z12lucenewcsdupPKw+0x2c)[0x2b7b4404c55c] ./libSearch.so(_ZN6lucene5index4Term3setEPKwS3_b+0x125)[0x2b7b44031aa5] ./libSearch.so(_ZN6lucene5index15TermInfosReader17ensureIndexIsReadEv+0x196)[0x2b7b44032476] ./libSearch.so(_ZN6lucene5index15TermInfosReader3getEPKNS0_4TermE+0x3d)[0x2b7b4403287d] ./libSearch.so(_ZNK6lucene5index13SegmentReader7docFreqEPKNS0_4TermE+0xf)[0x2b7b4402b6cf] ./libSearch.so(_ZN6lucene6search10Similarity3idfEPNS_5index4TermEPNS0_8SearcherE+0x45)[0x2b7b44049d85] ./libSearch.so(_ZN6lucene6search9TermQuery10TermWeight19sumOfSquaredWeightsEv+0x38)[0x2b7b4404ab78] ./libSearch.so(_ZN6lucene6search5Query6weightEPNS0_8SearcherE+0x42)[0x2b7b44048f82] ./libSearch.so(_ZN6lucene6search13IndexSearcher7_searchEPNS0_5QueryEPNS0_6FilterEi+0x2b)[0x2b7b4404394b] ./libSearch.so(_ZN6lucene6search4Hits11getMoreDocsEm+0x165)[0x2b7b44042995] ./libSearch.so(_ZN6lucene6search4HitsC1EPNS0_8SearcherEPNS0_5QueryEPNS0_6FilterEPKNS0_4SortE+0xc9)[0x2b7b44042ee9] ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryEPNS0_6FilterE+0x3e)[0x2b7b44009a02] ./libSearch.so(_ZN6lucene6search8Searcher6searchEPNS0_5QueryE+0x22)[0x2b7b44009a58] ./libSearch.so(_Z21SearchStringRSbIwSt11char_traitsIwESaIwEES3_+0x504)[0x2b7b44007190] [0x403b74] [0x402674] /lib64/libpthread.so.0[0x3df9e0673d] /lib64/libc.so.6(clone+0x6d)[0x3df96d44bd] ======= Memory map: ======== 00400000-00406000 r-xp 00000000 08:0a 13516808 /usr/local/apps/SearchLib/code/CluceneTest/ 00605000-00606000 rw-p 00005000 08:0a 13516808 /usr/local/apps/SearchLib/code/CluceneTest/ 135cf000-14754000 rw-p 135cf000 00:00 0 [heap] 40390000-40391000 ---p 40390000 00:00 0 40391000-40d91000 rw-p 40391000 00:00 0 40d91000-40d92000 ---p 40d91000 00:00 0 40d92000-41792000 rw-p 40d92000 00:00 0 41792000-41793000 ---p 41792000 00:00 0 41793000-42193000 rw-p 41793000 00:00 0 42193000-42194000 ---p 42193000 00:00 0 42194000-42b94000 rw-p 42194000 00:00 0 42b94000-42b95000 ---p 42b94000 00:00 0 42b95000-43595000 rw-p 42b95000 00:00 0 43595000-43596000 ---p 43595000 00:00 0 43596000-43f96000 rw-p 43596000 00:00 0 43f96000-43f97000 ---p 43f96000 00:00 0 43f97000-44997000 rw-p 43f97000 00:00 0 44997000-44998000 ---p 44997000 00:00 0 44998000-45398000 rw-p 44998000 00:00 0 45398000-45399000 ---p 45398000 00:00 0 45399000-45d99000 rw-p 45399000 00:00 0 45d99000-45d9a000 ---p 45d99000 00:00 0 45d9a000-4679a000 rw-p 45d9a000 00:00 0 4679a000-4679b000 ---p 4679a000 00:00 0 4679b000-4719b000 rw-p 4679b000 00:00 0 4719b000-4719c000 ---p 4719b000 00:00 0 4719c000-47b9c000 rw-p 4719c000 00:00 0 47b9c000-47b9d000 ---p 47b9c000 00:00 0 47b9d000-4859d000 rw-p 47b9d000 00:00 0 4859d000-4859e000 ---p 4859d000 00:00 0 4859e000-48f9e000 rw-p 4859e000 00:00 0 48f9e000-48f9f000 ---p 48f9e000 00:00 0 48f9f000-4999f000 rw-p 48f9f000 00:00 0 4999f000-499a0000 ---p 4999f000 00:00 0 499a0000-4a3a0000 rw-p 499a0000 00:00 0 4a3a0000-4a3a1000 ---p 4a3a0000 00:00 0 4a3a1000-4ada1000 rw-p 4a3a1000 00:00 0 4ada1000-4ada2000 ---p 4ada1000 00:00 0 4ada2000-4b7a2000 rw-p 4ada2000 00:00 0 4b7a2000-4b7a3000 ---p 4b7a2000 00:00 0 4b7a3000-4c1a3000 rw-p 4b7a3000 00:00 0 4c1a3000-4c1a4000 ---p 4c1a3000 00:00 0 4c1a4000-4cba4000 rw-p 4c1a4000 00:00 0 4cba4000-4cba5000 ---p 4cba4000 00:00 0 4cba5000-4d5a5000 rw-p 4cba5000 00:00 0 4d5a5000-4d5a6000 ---p 4d5a5000 00:00 0 4d5a6000-4dfa6000 rw-p 4d5a6000 00:00 0 4dfa6000-4dfa7000 ---p 4dfa6000 00:00 0 ___________________________________________________________________________ Best wishes, Zeng |
From: Ahmed <ci7...@gm...> - 2011-12-02 09:44:01
|
Hi Veit Le 02/12/2011 07:29, Veit Jahns a écrit : > I think, you need the > BooleanQuery as the outcome, right? This seems to depend on the > position increment return by the filter. But haven't understand this > completely yet. You are right, if i set the Position Increment of "saved" tokens to 0, it works, and the queryparser build a boolean query instead of a phrase query thank you for your help ahmed |
From: Veit J. <nun...@go...> - 2011-12-02 07:29:30
|
Hi Ahmed! 2011/12/1 Ahmed Saidi <ci7...@gm...>: > Hi Viet, > i want to build a filter to split tokens that contain characters > [a-zA-Z] and numbers into two or more tokens > for example if this filter got a token like "test123" it will split it > into two tokens "test" and "123", and it will split "ci7nucha" to > "ci", "7" and "nusha" > My implementation does that, but rather than converting splited tokens > into Term query, it convert them into PhraseQuery > I want to build a filter like solr WordDelimiterFilter But then, I think, you have to extend/change the QueryParser. If a field query is parsed than it depends on the "tokinzation" of the text. If the tokenization results in one term then the outcome of parsing the field query is a TermQuery. If not, as in your case, then the outcome is either a BooleanQuery consisting of several TermQueries or a PhraseQuery (cf. QueryParser::getFieldQuery(const TCHAR* _field, TCHAR* queryText) in QueryParser.cpp). I think, you need the BooleanQuery as the outcome, right? This seems to depend on the position increment return by the filter. But haven't understand this completely yet. Kind regards, Veit |
From: Ahmed S. <ci7...@gm...> - 2011-12-01 08:58:25
|
Hi Viet, i want to build a filter to split tokens that contain characters [a-zA-Z] and numbers into two or more tokens for example if this filter got a token like "test123" it will split it into two tokens "test" and "123", and it will split "ci7nucha" to "ci", "7" and "nusha" My implementation does that, but rather than converting splited tokens into Term query, it convert them into PhraseQuery I want to build a filter like solr WordDelimiterFilter thank you 2011/11/30, Veit Jahns <nun...@go...>: > Hi Ahmed, > > I'm sorry, I don't understand your problem completely. Do you mean > that your query "test123" has to be parsed to two sub-queries "test" > and "123", but you only get a query "test 123" performed on your > default field? If so, I guess, you have to extend the query parser > also. > > Kind regards, > > Veit > > ------------------------------------------------------------------------------ > All the data continuously generated in your IT infrastructure > contains a definitive record of customers, application performance, > security threats, fraudulent activity, and more. Splunk takes this > data and makes sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-novd2d > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > -- Envoyé avec mon mobile |
From: Veit J. <nun...@go...> - 2011-11-30 20:28:30
|
2011/11/30 Emerson Espínola <eme...@gm...> > > Should I include the BrazilianAnalyzer dir? Yes, at least the BrazilianAnalyzer.h. Veit |
From: Veit J. <nun...@go...> - 2011-11-30 20:24:07
|
Hi Ahmed, I'm sorry, I don't understand your problem completely. Do you mean that your query "test123" has to be parsed to two sub-queries "test" and "123", but you only get a query "test 123" performed on your default field? If so, I guess, you have to extend the query parser also. Kind regards, Veit |
From: Veit J. <nun...@go...> - 2011-11-30 20:03:54
|
Hi! 2011/11/29 pradeepa kumar <cdp...@gm...>: > Hi > I am a C++ developer and would like to volunteer in development tasks > Could you pease let me know how and where do I start Actually, there is a development task. Some months ago we started to give CLucene a new code base. It was intended to base the new CLucene version on Lucene++, a port by Alan of a newer Java Lucene version than the current CLucene. But Lucene++ uses boost::shared_ptr all over the place. CLucene, however, is intended to be as fast as possible, which requires to reduce the usage of boost::shared_ptr in this code base. Sergey put some efforts on this to identify bottlenecks and to evaluate options how to reduce the usage of boost::shared_ptr in the code base and optimize the code itself. But unfortunately and due to other obligations, we were distracted from this activity. So, if you are interested in this, your help is much appreciated. The work done so far can be found at github: - https://github.com/luceneplusplus/LucenePlusPlus (original base by Alan) - https://github.com/drigh/LucenePlusPlus (tests and optimizations by Sergey) There are also some further information and a discussion in Google Wave that I can provide to you. But before you start to work we should decide what shall be the next step towards a new CLucene code base. If you have any comments or ideas on this, please let us know. Kind regards, Veit |