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
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Veit J. <nun...@go...> - 2011-02-03 19:12:54
|
2011/2/2 Ahmed Saidi <ci7...@gm...>: > Even after optimizing the index, the size is 20 gb. The size of the > data which i want to index is about 8 GB. Strange indeed. Just some further questions which came into my mind: - What kind of analyzer do you use for tokenizing? - Is the correct number of documents in the indexed and no document indexed twice? And this disuccussion [1] may be useful to you. > if i add a set of fields that have the same values to the index, will > clucene do any kind of compression? Not directly. But as far as I understand the index format [2] the terms are only stored in the term dictionary and which are references in an implicit manner in the frequency files. Veit [1] http://thread.gmane.org/gmane.comp.jakarta.lucene.user/8622 [2] http://lucene.apache.org/java/2_3_2/fileformats.html |
|
From: Lien, J. <jen...@ca...> - 2011-02-03 06:53:52
|
All, I’ve recently worked on getting CLucene building and running on Solaris 10 using Sun Studio 12.1 compilers. To get this (almost) done, I’ve had to do a few fixes. Before I submit a patch I would like to discuss the proposed changes: 1) Usage of the _T macro: The STL version used default by the 12.1 compiler uses _T heavily for internal template types and gets confused by the macro expansion SYMBOL__T defined in src/shared/CMakeLists.txt. Replacing _T with e.g. clT makes the compiler compile almost all the code. I'm aware that client code might be using this macro already, but to be compatible with 12.1 (both default STL version as well as the --stlport4 version) I think this needs to be fixed. 2) Updating use of the _CLFINALLY(...) macro. Removed space (_CLFINALLY (...) to _CLFINALLY(...) 3) Change the type used for insertion in the fieldSelections map (FieldSelector.cpp, line 60), now using FieldSelectionType::value_type 4) Added macro for return value in searchDocs (TestIndexSearcher.cpp). Compiler complaints. 5) Added copy constructor and assignment operator in ArrayBase (Array.h). The lack of these made both cl_demo and cl_test to fail on solaris. Quite obvious actually - and scary since the Win32 and Linux builds works perfectly without this fix. (Evaluate usage in DocumentsWriterThreadState.cpp) After all of these changes, I'm able to compile, run cl_demo and cl_test on Solaris 10, Win32 and Linux using the same sources. However, the sort tests fails on Solaris, this I'll need to look more into. Regards /jens -- Jens Lien Managing Consultant Capgemini Norway Capgemini is a trading name used by the Capgemini Group of companies which includes Capgemini Norge AS, a company registered in Norway (number 943574537) whose registered office is at Hoffsveien 1 D - Pb. 475, Skøyen – 0214 Oslo. This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message. |
|
From: Ahmed S. <ci7...@gm...> - 2011-02-02 14:49:13
|
Even after optimizing the index, the size is 20 gb. The size of the data which i want to index is about 8 GB. if i add a set of fields that have the same values to the index, will clucene do any kind of compression? Ahmed 2011/2/1, Veit Jahns <nun...@go...>: > Hi Ahmed! > > 2011/2/1 Ahmed Saidi <ci7...@gm...>: >> I'm using clucene to index a large set of files, the index size was >> about 2 GB, after adding tree fildes that contient a numbrer such as >> categorie, author id, those fields are not tokinized but stored in the >> index, and a large set of document have the same categorie or author >> id, then the index size change to 20 GB! >> is that normal? > > Did you optimize your index afterwards? > >> and can i add a field that is not tkokinized nor stored in the index? > > No. You will get an exception. See Field.cpp:196. > > Kind regards, > > Veit > > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > -- Envoyé avec mon mobile |
|
From: Veit J. <nun...@go...> - 2011-02-01 17:55:42
|
Hi Ahmed! 2011/2/1 Ahmed Saidi <ci7...@gm...>: > I'm using clucene to index a large set of files, the index size was > about 2 GB, after adding tree fildes that contient a numbrer such as > categorie, author id, those fields are not tokinized but stored in the > index, and a large set of document have the same categorie or author > id, then the index size change to 20 GB! > is that normal? Did you optimize your index afterwards? > and can i add a field that is not tkokinized nor stored in the index? No. You will get an exception. See Field.cpp:196. Kind regards, Veit |
|
From: Veit J. <nun...@go...> - 2011-02-01 17:38:20
|
Hi Rubén! 2011/1/31 Rubén <rub...@gm...>: > Anyone can tell me where I can download the sources contrib? You will find the sources of the contribs in git repository [1, 2]. Kind regards, Veit [1] http://clucene.git.sourceforge.net/git/gitweb.cgi?p=clucene/clucene;a=tree;f=src/contribs-lib;h=98b532da921840d9e2008b2c0860bd3c65a3da6f;hb=refs/heads/master [2] http://clucene.git.sourceforge.net/git/gitweb.cgi?p=clucene/clucene;a=tree;f=src/contribs;h=08ee74616d20c7c1963338c853920d01bc17b534;hb=refs/heads/master |
|
From: Ahmed S. <ci7...@gm...> - 2011-02-01 13:01:14
|
I'm using clucene to index a large set of files, the index size was about 2 GB, after adding tree fildes that contient a numbrer such as categorie, author id, those fields are not tokinized but stored in the index, and a large set of document have the same categorie or author id, then the index size change to 20 GB! is that normal? and can i add a field that is not tkokinized nor stored in the index? Ahmed -- Envoyé avec mon mobile |
|
From: Rubén <rub...@gm...> - 2011-01-31 22:50:28
|
Anyone can tell me where I can download the sources contrib? Rubén Bressler Camps MSc. Ciencia de la Computación. |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-29 16:22:17
|
I removed that branch. Itamar. On 28/1/2011 12:43 AM, Kostka Bořivoj wrote: > Hi Itamar, > > I tried to delete branch long time ago, but for some reason it is still listed in GIT and I'm not able to delete it. As everything was merged into master long time ago > and I'm not using this branch any more it is safe to delete it. Please feel free to do this, if you can > > Unfortunately I was busy last few months, so I didn't port other tests. Hope I can spend some time next month > > Borek > >> -----Original Message----- >> From: Itamar Syn-Hershko [mailto:it...@co...] >> Sent: Thursday, January 27, 2011 9:20 PM >> To: clu...@li... >> Subject: Re: [CLucene-dev] Current branches state >> >> Borek, >> >> >> All is merged into master now. >> >> >> What is the status of your intensive_testing branch? >> >> >> Itamar. >> >> >> On 21/10/2010 10:23 AM, Kostka Bořivoj wrote: >> >>> Itamar, >>> >>> I found the FSDirectory_fix branch is not merged into master. Small but possibly >> critical bug is fixed here. >>> I just send this message for case you miseed this fix. >>> >>> Borek >>> >>>> -----Original Message----- >>>> From: Itamar Syn-Hershko [mailto:it...@co...] >>>> Sent: Thursday, October 07, 2010 11:38 PM >>>> To: clu...@li... >>>> Subject: Re: [CLucene-dev] Current branches state >>>> >>>> >>>> >>>> I just had a quick look on Array.h. ArrayBase<T>::resize seems to be >>>> flawed in so many ways that I just went ahead and rewrote it. Jiri, your >>>> fix was correct, but it wasn't complete (for example: if deleteValues >>>> was passed true before values was initialized, it would crash). >>>> >>>> >>>> I checked in what I have done to master since the tests pass and I don't >>>> think I could break anything with it. Please test and let me know. >>>> >>>> >>>> I'm a bit swamped atm so I hope to review the rest of the pending items >>>> soon. >>>> >>>> >>>> Itamar. >>>> >>>> >>>> On 23/9/2010 11:19 PM, Šplíchal Jiří wrote: >>>> >>>>> Hi, >>>>> I just published several changes in the memory_leaks branch. Now, following tests >>>> have been fixed >>>>> + testRAMDirectory >>>>> + testsearch >>>>> + testRangeFilter >>>>> + testConstantScoreQueries >>>>> + testsort >>>>> + testdatefilter >>>>> + testBitSet >>>>> + testExtractTerms. >>>>> >>>>> We still have to solve the memory leaks produced by the following tests: >>>>> - testatomicupdates >>>>> - testindexreader >>>>> - testanalyzers >>>>> - testindexwriter >>>>> - testIndexModifier >>>>> - testAddIndexesNoOptimize >>>>> - testutf8 >>>>> >>>>> Please, could someone check the changes especially those in the core files: >>>>> Array.h, DocumentsWriterThreadState.cpp, IndexWriter.cpp? >>>>> >>>>> Jiri >>>>> >>>>> >>>>> -----Original Message----- >>>>> From: Veit Jahns [mailto:nun...@go...] >>>>> Sent: Wednesday, September 22, 2010 9:32 PM >>>>> To: clu...@li... >>>>> Subject: Re: [CLucene-dev] Current branches state >>>>> >>>>> 2010/9/20 Šplíchal Jiří<spl...@to...>: >>>>>> I tested once more our code in order to check the memory leaks. >>>>>> Here is the list of leaking test suites: >>>>>> >>>>>> [...] >>>>>> >>>>>> Let us get rid of the leaks! I will start from the bottom >>>>> Ok. As I was examining memory leaks in CLucene, I observed, that some >>>>> leaks are caused by the tests themselves. I will take a look what is >>>>> still left from this effort. >>>>> >>>>>> with the testExtractTerms test. Should we create a new branch for this issue? >>>>> AsI understand Itamar proposal, I'd say yes. >>>>> >>>>> Veit >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> Start uncovering the many advantages of virtual appliances >>>>> and start using them to simplify application deployment and >>>>> accelerate your shift to cloud computing. >>>>> http://p.sf.net/sfu/novell-sfdev2dev >>>>> _______________________________________________ >>>>> CLucene-developers mailing list >>>>> CLu...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>>> ------------------------------------------------------------------------------ >>>>> Nokia and AT&T present the 2010 Calling All Innovators-North America contest >>>>> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada >>>>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing >>>>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >>>>> http://p.sf.net/sfu/nokia-dev2dev >>>>> _______________________________________________ >>>>> CLucene-developers mailing list >>>>> CLu...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>> ------------------------------------------------------------------------------ >>>> Beautiful is writing same markup. Internet Explorer 9 supports >>>> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. >>>> Spend less time writing and rewriting code and more time creating great >>>> experiences on the web. Be a part of the beta today. >>>> http://p.sf.net/sfu/beautyoftheweb >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> ------------------------------------------------------------------------------ >>> Nokia and AT&T present the 2010 Calling All Innovators-North America contest >>> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >>> http://p.sf.net/sfu/nokia-dev2dev >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> ------------------------------------------------------------------------------ >> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! >> Finally, a world-class log management solution at an even better price-free! >> Download using promo code Free_Logger_4_Dev2Dev. Offer expires >> February 28th, so secure your free ArcSight Logger TODAY! >> http://p.sf.net/sfu/arcsight-sfd2d >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-29 16:22:13
|
Just did. On 28/1/2011 10:26 AM, Šplíchal Jiří wrote: > Hello, > > I think we should remove the memore_leaks branch, > and start searching for memleaks in the current version. > > Jiri > > > > -----Original Message----- > From: Itamar Syn-Hershko [mailto:it...@co...] > Sent: Thursday, January 27, 2011 9:19 PM > To: clu...@li... > Subject: Re: [CLucene-dev] NearSpansUnordered bug fix > > Hi, > > > I just merged the branch memory_leaks into master. I haven't tested it > as thoroughly as I planned, but since both you and Jiri have been > working with it from quite some time its probably safe to assume it is > stable. > > > There are still some leaks visible from the tests - some were added by > you (Veit) in recent tests. I fixed an obvious one in 0f28114. Can you > have a look at whats left? > > > I didn't remove the memory_leaks branch yet - please remove at your > convenience. Future fixes / patches should appear in their own dedicated > branches to ease the testing and merging process anyway... > > > Also, what is the status of the various tasks at hand? This includes: > > - SpanQueries > (https://sourceforge.net/tracker/?func=detail&aid=1483808&group_id=80013&atid=558446 > <https://sourceforge.net/tracker/?func=detail&aid=1483808&group_id=80013&atid=558446>) > > - SpellChecker > (https://sourceforge.net/tracker/?func=detail&aid=3113462&group_id=80013&atid=558446 > <https://sourceforge.net/tracker/?func=detail&aid=3113462&group_id=80013&atid=558446>) > > - smart pointers > > > Itamar. > > > > On 16/11/2010 10:32 AM, Šplíchal Jiří wrote: > >> Hi, >> >> I removed my branches except of the memory_leaks branch because it is not merged with the master yet. >> If you do not intend to merge it now, please at least cherry-pick the last commit which is a simple bug fix >> in SpanQueryFilter. But it would be great if could merge this branch into master too. >> >> We are using the merge of the two branches without problems = all tests pass in debug and also in release >> on win7 64bit. But there are still some memory leaks left. >> >> Jiri >> >> >> >> -----Original Message----- >> From: Itamar Syn-Hershko [mailto:it...@co...] >> Sent: Saturday, November 13, 2010 5:20 PM >> To: clu...@li... >> Subject: Re: [CLucene-dev] NearSpansUnordered bug fix >> >> All were merged. Please prune your copies. intensive_testing and >> veit_working are still there even though they are merged into master >> already - owners, please verify and remove them. >> >> Itamar. >> >> On 7/11/2010 12:23 AM, Kostka Bořivoj wrote: >>> HighlighterFix and FSDirectory_fix are ready to merge, I think >>> Borek >>> >>>> -----Original Message----- >>>> From: Itamar Syn-Hershko [mailto:it...@co...] >>>> Sent: Saturday, November 06, 2010 4:55 PM >>>> To: clu...@li... >>>> Subject: Re: [CLucene-dev] NearSpansUnordered bug fix >>>> >>>> Where are we with the smart_pointers branchs? >>>> >>>> >>>> And which of all the fix branches is ready to be merged to master? >>>> >>>> >>>> I also recall some of you guys should have removed some branches after >>>> verifying a merge (I think it was Jiri and Borek). Was it ever done? >>>> >>>> >>>> Itamar. >>>> >>>> >>>> On 3/11/2010 9:23 PM, Veit Jahns wrote: >>>> >>>>> 2010/11/2 Itamar Syn-Hershko<it...@co...>: >>>>>> I'm waiting on some feedback from Veit. >>>>> Ups! It seems, that I've lost completely track of something. Can you >>>>> give me a clue, Itamar? >>>>> >>>>> Veit >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> Achieve Improved Network Security with IP and DNS Reputation. >>>>> Defend against bad network traffic, including botnets, malware, >>>>> phishing sites, and compromised hosts - saving your company time, >>>>> money, and embarrassment. Learn More! >>>>> http://p.sf.net/sfu/hpdev2dev-nov >>>>> _______________________________________________ >>>>> CLucene-developers mailing list >>>>> CLu...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>>> >>>>> >>>> ------------------------------------------------------------------------------ >>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>>> David G. Thomson, author of the best-selling book "Blueprint to a >>>> Billion" shares his insights and actions to help propel your >>>> business during the next growth cycle. Listen Now! >>>> http://p.sf.net/sfu/SAP-dev2dev >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> ------------------------------------------------------------------------------ >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> >>> >> ------------------------------------------------------------------------------ >> Centralized Desktop Delivery: Dell and VMware Reference Architecture >> Simplifying enterprise desktop deployment and management using >> Dell EqualLogic storage and VMware View: A highly scalable, end-to-end >> client virtualization framework. Read more! >> http://p.sf.net/sfu/dell-eql-dev2dev >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> ------------------------------------------------------------------------------ >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. >> Spend less time writing and rewriting code and more time creating great >> experiences on the web. Be a part of the beta today >> http://p.sf.net/sfu/msIE9-sfdev2dev >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Veit J. <nun...@go...> - 2011-01-29 16:06:53
|
2011/1/29 Veit Jahns <nun...@go...>: > 2011/1/22 Veit Jahns <nun...@go...>: >>> here are my changes, due to the ANSI compiler errors. The code no longer uses std::wstring now. >>> >>> [...] >> >> Thanks for the patch. I had trouble with the commit file, so I used >> only the patch file. The patch is now added and submitted it to the >> repository in the corresponding branch. >> >>> I'm still don't know why the suggestSimilar-function doesn't return the TCHAR** correct, when the IDE is not attached. But i'm looking forward to find the problem :) >> >> It seems that it does work now---at least on Win7. I will check Ubuntu tomorrow. > > It works on Ubuntu 10 as well. I have to correct this. I forgot to merge the latest changes. suggestSimilar() still returns a NULL pointer. Veit |
|
From: Veit J. <nun...@go...> - 2011-01-29 15:57:33
|
2011/1/22 Veit Jahns <nun...@go...>: >> here are my changes, due to the ANSI compiler errors. The code no longer uses std::wstring now. >> >> [...] > > Thanks for the patch. I had trouble with the commit file, so I used > only the patch file. The patch is now added and submitted it to the > repository in the corresponding branch. > >> I'm still don't know why the suggestSimilar-function doesn't return the TCHAR** correct, when the IDE is not attached. But i'm looking forward to find the problem :) > > It seems that it does work now---at least on Win7. I will check Ubuntu tomorrow. It works on Ubuntu 10 as well. Veit |
|
From: Ahmed S. <ci7...@gm...> - 2011-01-29 11:56:29
|
after setting CMAKE_CXX_FLAGS to -DUNICODE, i get this: http://pastebin.com/kbVLhSy8 Ahmed 2011/1/14 Ahmed Saidi <ci7...@gm...> > I'm using CLucene from git, just forget about qt. > i have comiled clucene (using mingw) on another computer and it > compile correctly, but on my computer i get this problem. > > Ahmed > > 2011/1/14, Ben van Klinken <bva...@gm...>: > > Perhaps asking Qt might be better? If they have made changes to > > CLucene then they should know what's wrong > > > > Ben > > > > On Wed, Jan 12, 2011 at 7:56 PM, Ahmed Saidi <ci7...@gm...> wrote: > >> Yes, i want to use the unicode version. > >> When installing Qt SDK, it install mingw, any way i have just > >> installed the last mingw version from their website but stell have the > >> same problem. > >> > >> Ahmed > >> > >> 2011/1/12, Ben van Klinken <bva...@gm...>: > >>> ok, good. But i suspect you want to build in unicode mode? > >>> > >>> looks pretty good to me - tchar and _T isn't being touched - so > >>> default tchar.h behaviour should be that TCHAR is defined as wchar_t > >>> and _T as L ## x > >>> > >>> but reading back your mail - what do you mean the 'qt version'? I'm > >>> not aware of what QT did with clucene? > >>> > >>> ben > >>> > >>> On Tue, Jan 11, 2011 at 9:00 PM, Ahmed Saidi <ci7...@gm...> > wrote: > >>>> here is _clucene-config.h: > >>>> http://pastebin.com/Yb8mNkiK > >>>> and clucene-config.h: > >>>> http://pastebin.com/YuSnMpm9 > >>>> > >>>> i think that ming has a tchar.h, because cmake print this: > >>>> Looking for C++ include tchar.h - found > >>>> > >>>> if i enable acsii mode it compile correctly > >>>> > >>>> 2011/1/10 Ben van Klinken <bva...@gm...> > >>>>> > >>>>> I don't have a windows machine to try this out, so i'm guessing a > >>>>> bit... i did get it working a while back... but you know how these > >>>>> things go > >>>>> > >>>>> looks like there's something wrong with the _T symbol... > >>>>> > >>>>> > >>>>> The line: > >>>>> const TCHAR* _LUCENE_BLANK_STRING=_T(""); > >>>>> > >>>>> _T("") should be returning actually L"". There are some things that > >>>>> those clucene-config.h file do if it think it needs to. I'm not sure > >>>>> if ming has tchar.h (which normally defines _T on windows)? > >>>>> > >>>>> can you give me your src/shared/CLucene/_clucene-config.h, > >>>>> clucene-config.h in your build directory. i'm looking for what it > does > >>>>> with the _T symbol.. also let me know if there is a tchar.h in the > >>>>> mingw include path > >>>>> > >>>>> > >>>>> Cheers > >>>>> ben > >>>>> > >>>>> > >>>>> On Thu, Jan 6, 2011 at 8:37 PM, Ahmed Saidi <ci7...@gm...> > wrote: > >>>>> > Here is what cmake print out: > >>>>> > http://pastebin.com/4KPZeFbB > >>>>> > mingw32-make: > >>>>> > http://pastebin.com/JFX5XzJX > >>>>> > > >>>>> > I am using the mingw version distributed along with qt 4.7 > >>>>> > > >>>>> > Ahmed > >>>>> > 2011/1/6 Ben van Klinken <bva...@gm...> > >>>>> >> > >>>>> >> did you configure using cmake? what did cmake print out? turn on > >>>>> >> verbose (run cmake using -DCMAKE_VERBOSE_MAKEFILE=ON), or use the > >>>>> >> cmake gui. so that we can see what parameters are being passed in. > >>>>> >> looks to me like ming is being compiled in ascii mode. > >>>>> >> > >>>>> >> ben > >>>>> >> > >>>>> >> On Tue, Jan 4, 2011 at 7:28 PM, Ahmed nusha <ci7...@gm...> > >>>>> >> wrote: > >>>>> >> > I'm trying to compile clucene under windows and i get the > >>>>> >> > following > >>>>> >> > errors: > >>>>> >> > > >>>>> >> > C:\clucene_mingw-build>mingw32-make > >>>>> >> > [ 0%] Building CXX object > >>>>> >> > > src/shared/CMakeFiles/clucene-shared.dir/CLucene/SharedHeader.obj > >>>>> >> > C:\clucene\src\shared\CLucene\SharedHeader.cpp:16: error: cannot > >>>>> >> > convert > >>>>> >> > 'const char*' to 'const TCHAR*' in initialization > >>>>> >> > mingw32-make[2]: *** > >>>>> >> > > [src/shared/CMakeFiles/clucene-shared.dir/CLucene/SharedHeader.obj] > >>>>> >> > Error 1 > >>>>> >> > mingw32-make[1]: *** > >>>>> >> > [src/shared/CMakeFiles/clucene-shared.dir/all] > >>>>> >> > Error 2 > >>>>> >> > mingw32-make: *** [all] Error 2 > >>>>> >> > > >>>>> >> > what is the problem? > >>>>> >> > > >>>>> >> > Ahmed. > >>>>> >> > > >>>>> >> > Itamar Syn-Hershko <itamar@...> writes: > >>>>> >> > > >>>>> >> >> > >>>>> >> >> It should compile with MingW. What compile errors do you get? > >>>>> >> >> > >>>>> >> >> Itamar. > >>>>> >> >> > >>>>> >> >> On 1/8/2010 10:17 PM, Ahmed wrote: > >>>>> >> >> > hi, > >>>>> >> >> > > >>>>> >> >> > Can compile CLucene 2.3.2 under windows using MingW ? > >>>>> >> >> > I tried that and i get a lot of errors. > >>>>> >> >> > > >>>>> >> >> > Ahmed > >>>>> >> >> > > >>>>> >> >> > > >>>>> >> >> > > >>>>> >> >> > > >>>>> >> >> > > >>>>> >> >> > > ------------------------------------------------------------------------------ > >>>>> >> >> > The Palm PDK Hot Apps Program offers developers who use the > >>>>> >> >> > Plug-In Development Kit to bring their C/C++ apps to Palm for > a > >>>>> >> >> > share > >>>>> >> >> > of $1 Million in cash or HP Products. Visit us here for more > >>>>> >> >> > details: > >>>>> >> >> > http://p.sf.net/sfu/dev2dev-palm > >>>>> >> >> > _______________________________________________ > >>>>> >> >> > CLucene-developers mailing list > >>>>> >> >> > CLucene-developers@... > >>>>> >> >> > > https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>>>> >> >> > > >>>>> >> >> > > >>>>> >> >> > > >>>>> >> >> > >>>>> >> >> > >>>>> >> >> > >>>>> >> >> > >>>>> >> >> > ------------------------------------------------------------------------------ > >>>>> >> >> The Palm PDK Hot Apps Program offers developers who use the > >>>>> >> >> Plug-In Development Kit to bring their C/C++ apps to Palm for a > >>>>> >> >> share > >>>>> >> >> of $1 Million in cash or HP Products. Visit us here for more > >>>>> >> >> details: > >>>>> >> >> http://p.sf.net/sfu/dev2dev-palm > >>>>> >> >> > >>>>> >> > > >>>>> >> > > >>>>> >> > > >>>>> >> > > >>>>> >> > > ------------------------------------------------------------------------------ > >>>>> >> > Learn how Oracle Real Application Clusters (RAC) One Node allows > >>>>> >> > customers > >>>>> >> > to consolidate database storage, standardize their database > >>>>> >> > environment, > >>>>> >> > and, > >>>>> >> > should the need arise, upgrade to a full multi-node Oracle RAC > >>>>> >> > database > >>>>> >> > without downtime or disruption > >>>>> >> > http://p.sf.net/sfu/oracle-sfdevnl > >>>>> >> > _______________________________________________ > >>>>> >> > CLucene-developers mailing list > >>>>> >> > CLu...@li... > >>>>> >> > https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>>>> >> > > >>>>> >> > > >>>>> >> > >>>>> >> > >>>>> >> > >>>>> >> > ------------------------------------------------------------------------------ > >>>>> >> Learn how Oracle Real Application Clusters (RAC) One Node allows > >>>>> >> customers > >>>>> >> to consolidate database storage, standardize their database > >>>>> >> environment, > >>>>> >> and, > >>>>> >> should the need arise, upgrade to a full multi-node Oracle RAC > >>>>> >> database > >>>>> >> without downtime or disruption > >>>>> >> http://p.sf.net/sfu/oracle-sfdevnl > >>>>> >> _______________________________________________ > >>>>> >> CLucene-developers mailing list > >>>>> >> CLu...@li... > >>>>> >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>>>> > > >>>>> > > >>>>> > > >>>>> > > ------------------------------------------------------------------------------ > >>>>> > Learn how Oracle Real Application Clusters (RAC) One Node allows > >>>>> > customers > >>>>> > to consolidate database storage, standardize their database > >>>>> > environment, > >>>>> > and, > >>>>> > should the need arise, upgrade to a full multi-node Oracle RAC > >>>>> > database > >>>>> > without downtime or disruption > >>>>> > http://p.sf.net/sfu/oracle-sfdevnl > >>>>> > _______________________________________________ > >>>>> > CLucene-developers mailing list > >>>>> > CLu...@li... > >>>>> > https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>>>> > > >>>>> > > >>>>> > >>>>> > >>>>> > ------------------------------------------------------------------------------ > >>>>> Gaining the trust of online customers is vital for the success of any > >>>>> company > >>>>> that requires sensitive data to be transmitted over the Web. Learn > >>>>> how > >>>>> to > >>>>> best implement a security strategy that keeps consumers' information > >>>>> secure > >>>>> and instills the confidence they need to proceed with transactions. > >>>>> http://p.sf.net/sfu/oracle-sfdevnl > >>>>> _______________________________________________ > >>>>> CLucene-developers mailing list > >>>>> CLu...@li... > >>>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>>> > >>>> > >>>> > ------------------------------------------------------------------------------ > >>>> Gaining the trust of online customers is vital for the success of any > >>>> company > >>>> that requires sensitive data to be transmitted over the Web. Learn > how > >>>> to > >>>> best implement a security strategy that keeps consumers' information > >>>> secure > >>>> and instills the confidence they need to proceed with transactions. > >>>> http://p.sf.net/sfu/oracle-sfdevnl > >>>> _______________________________________________ > >>>> CLucene-developers mailing list > >>>> CLu...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>>> > >>>> > >>> > >>> > ------------------------------------------------------------------------------ > >>> Protect Your Site and Customers from Malware Attacks > >>> Learn about various malware tactics and how to avoid them. Understand > >>> malware threats, the impact they can have on your business, and how you > >>> can protect your company and customers by using code signing. > >>> http://p.sf.net/sfu/oracle-sfdevnl > >>> _______________________________________________ > >>> CLucene-developers mailing list > >>> CLu...@li... > >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>> > >> > >> -- > >> Envoyé avec mon mobile > >> > >> > ------------------------------------------------------------------------------ > >> Protect Your Site and Customers from Malware Attacks > >> Learn about various malware tactics and how to avoid them. Understand > >> malware threats, the impact they can have on your business, and how you > >> can protect your company and customers by using code signing. > >> http://p.sf.net/sfu/oracle-sfdevnl > >> _______________________________________________ > >> CLucene-developers mailing list > >> CLu...@li... > >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >> > > > > > ------------------------------------------------------------------------------ > > Protect Your Site and Customers from Malware Attacks > > Learn about various malware tactics and how to avoid them. Understand > > malware threats, the impact they can have on your business, and how you > > can protect your company and customers by using code signing. > > http://p.sf.net/sfu/oracle-sfdevnl > > _______________________________________________ > > CLucene-developers mailing list > > CLu...@li... > > https://lists.sourceforge.net/lists/listinfo/clucene-developers > > > > -- > Envoyé avec mon mobile > |
|
From: Šplíchal J. <spl...@to...> - 2011-01-28 08:26:26
|
Hello, I think we should remove the memore_leaks branch, and start searching for memleaks in the current version. Jiri -----Original Message----- From: Itamar Syn-Hershko [mailto:it...@co...] Sent: Thursday, January 27, 2011 9:19 PM To: clu...@li... Subject: Re: [CLucene-dev] NearSpansUnordered bug fix Hi, I just merged the branch memory_leaks into master. I haven't tested it as thoroughly as I planned, but since both you and Jiri have been working with it from quite some time its probably safe to assume it is stable. There are still some leaks visible from the tests - some were added by you (Veit) in recent tests. I fixed an obvious one in 0f28114. Can you have a look at whats left? I didn't remove the memory_leaks branch yet - please remove at your convenience. Future fixes / patches should appear in their own dedicated branches to ease the testing and merging process anyway... Also, what is the status of the various tasks at hand? This includes: - SpanQueries (https://sourceforge.net/tracker/?func=detail&aid=1483808&group_id=80013&atid=558446 <https://sourceforge.net/tracker/?func=detail&aid=1483808&group_id=80013&atid=558446>) - SpellChecker (https://sourceforge.net/tracker/?func=detail&aid=3113462&group_id=80013&atid=558446 <https://sourceforge.net/tracker/?func=detail&aid=3113462&group_id=80013&atid=558446>) - smart pointers Itamar. On 16/11/2010 10:32 AM, Šplíchal Jiří wrote: > Hi, > > I removed my branches except of the memory_leaks branch because it is not merged with the master yet. > If you do not intend to merge it now, please at least cherry-pick the last commit which is a simple bug fix > in SpanQueryFilter. But it would be great if could merge this branch into master too. > > We are using the merge of the two branches without problems = all tests pass in debug and also in release > on win7 64bit. But there are still some memory leaks left. > > Jiri > > > > -----Original Message----- > From: Itamar Syn-Hershko [mailto:it...@co...] > Sent: Saturday, November 13, 2010 5:20 PM > To: clu...@li... > Subject: Re: [CLucene-dev] NearSpansUnordered bug fix > > All were merged. Please prune your copies. intensive_testing and > veit_working are still there even though they are merged into master > already - owners, please verify and remove them. > > Itamar. > > On 7/11/2010 12:23 AM, Kostka Bořivoj wrote: >> HighlighterFix and FSDirectory_fix are ready to merge, I think >> Borek >> >>> -----Original Message----- >>> From: Itamar Syn-Hershko [mailto:it...@co...] >>> Sent: Saturday, November 06, 2010 4:55 PM >>> To: clu...@li... >>> Subject: Re: [CLucene-dev] NearSpansUnordered bug fix >>> >>> Where are we with the smart_pointers branchs? >>> >>> >>> And which of all the fix branches is ready to be merged to master? >>> >>> >>> I also recall some of you guys should have removed some branches after >>> verifying a merge (I think it was Jiri and Borek). Was it ever done? >>> >>> >>> Itamar. >>> >>> >>> On 3/11/2010 9:23 PM, Veit Jahns wrote: >>> >>>> 2010/11/2 Itamar Syn-Hershko<it...@co...>: >>>>> I'm waiting on some feedback from Veit. >>>> Ups! It seems, that I've lost completely track of something. Can you >>>> give me a clue, Itamar? >>>> >>>> Veit >>>> >>>> ------------------------------------------------------------------------------ >>>> Achieve Improved Network Security with IP and DNS Reputation. >>>> Defend against bad network traffic, including botnets, malware, >>>> phishing sites, and compromised hosts - saving your company time, >>>> money, and embarrassment. Learn More! >>>> http://p.sf.net/sfu/hpdev2dev-nov >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>> >>>> >>> ------------------------------------------------------------------------------ >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >> > ------------------------------------------------------------------------------ > Centralized Desktop Delivery: Dell and VMware Reference Architecture > Simplifying enterprise desktop deployment and management using > Dell EqualLogic storage and VMware View: A highly scalable, end-to-end > client virtualization framework. Read more! > http://p.sf.net/sfu/dell-eql-dev2dev > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today > http://p.sf.net/sfu/msIE9-sfdev2dev > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers ------------------------------------------------------------------------------ Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even better price-free! Download using promo code Free_Logger_4_Dev2Dev. Offer expires February 28th, so secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsight-sfd2d _______________________________________________ CLucene-developers mailing list CLu...@li... https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Kostka B. <ko...@to...> - 2011-01-27 22:44:00
|
Hi Itamar, I tried to delete branch long time ago, but for some reason it is still listed in GIT and I'm not able to delete it. As everything was merged into master long time ago and I'm not using this branch any more it is safe to delete it. Please feel free to do this, if you can Unfortunately I was busy last few months, so I didn't port other tests. Hope I can spend some time next month Borek > -----Original Message----- > From: Itamar Syn-Hershko [mailto:it...@co...] > Sent: Thursday, January 27, 2011 9:20 PM > To: clu...@li... > Subject: Re: [CLucene-dev] Current branches state > > Borek, > > > All is merged into master now. > > > What is the status of your intensive_testing branch? > > > Itamar. > > > On 21/10/2010 10:23 AM, Kostka Bořivoj wrote: > > > Itamar, > > > > I found the FSDirectory_fix branch is not merged into master. Small but possibly > critical bug is fixed here. > > I just send this message for case you miseed this fix. > > > > Borek > > > >> -----Original Message----- > >> From: Itamar Syn-Hershko [mailto:it...@co...] > >> Sent: Thursday, October 07, 2010 11:38 PM > >> To: clu...@li... > >> Subject: Re: [CLucene-dev] Current branches state > >> > >> > >> > >> I just had a quick look on Array.h. ArrayBase<T>::resize seems to be > >> flawed in so many ways that I just went ahead and rewrote it. Jiri, your > >> fix was correct, but it wasn't complete (for example: if deleteValues > >> was passed true before values was initialized, it would crash). > >> > >> > >> I checked in what I have done to master since the tests pass and I don't > >> think I could break anything with it. Please test and let me know. > >> > >> > >> I'm a bit swamped atm so I hope to review the rest of the pending items > >> soon. > >> > >> > >> Itamar. > >> > >> > >> On 23/9/2010 11:19 PM, Šplíchal Jiří wrote: > >> > >>> Hi, > >>> I just published several changes in the memory_leaks branch. Now, following tests > >> have been fixed > >>> + testRAMDirectory > >>> + testsearch > >>> + testRangeFilter > >>> + testConstantScoreQueries > >>> + testsort > >>> + testdatefilter > >>> + testBitSet > >>> + testExtractTerms. > >>> > >>> We still have to solve the memory leaks produced by the following tests: > >>> - testatomicupdates > >>> - testindexreader > >>> - testanalyzers > >>> - testindexwriter > >>> - testIndexModifier > >>> - testAddIndexesNoOptimize > >>> - testutf8 > >>> > >>> Please, could someone check the changes especially those in the core files: > >>> Array.h, DocumentsWriterThreadState.cpp, IndexWriter.cpp? > >>> > >>> Jiri > >>> > >>> > >>> -----Original Message----- > >>> From: Veit Jahns [mailto:nun...@go...] > >>> Sent: Wednesday, September 22, 2010 9:32 PM > >>> To: clu...@li... > >>> Subject: Re: [CLucene-dev] Current branches state > >>> > >>> 2010/9/20 Šplíchal Jiří<spl...@to...>: > >>>> I tested once more our code in order to check the memory leaks. > >>>> Here is the list of leaking test suites: > >>>> > >>>> [...] > >>>> > >>>> Let us get rid of the leaks! I will start from the bottom > >>> Ok. As I was examining memory leaks in CLucene, I observed, that some > >>> leaks are caused by the tests themselves. I will take a look what is > >>> still left from this effort. > >>> > >>>> with the testExtractTerms test. Should we create a new branch for this issue? > >>> AsI understand Itamar proposal, I'd say yes. > >>> > >>> Veit > >>> > >>> ------------------------------------------------------------------------------ > >>> Start uncovering the many advantages of virtual appliances > >>> and start using them to simplify application deployment and > >>> accelerate your shift to cloud computing. > >>> http://p.sf.net/sfu/novell-sfdev2dev > >>> _______________________________________________ > >>> CLucene-developers mailing list > >>> CLu...@li... > >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >>> ------------------------------------------------------------------------------ > >>> Nokia and AT&T present the 2010 Calling All Innovators-North America contest > >>> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada > >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > >>> http://p.sf.net/sfu/nokia-dev2dev > >>> _______________________________________________ > >>> CLucene-developers mailing list > >>> CLu...@li... > >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers > >> ------------------------------------------------------------------------------ > >> Beautiful is writing same markup. Internet Explorer 9 supports > >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > >> Spend less time writing and rewriting code and more time creating great > >> experiences on the web. Be a part of the beta today. > >> http://p.sf.net/sfu/beautyoftheweb > >> _______________________________________________ > >> CLucene-developers mailing list > >> CLu...@li... > >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > > ------------------------------------------------------------------------------ > > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > > Create new apps& games for the Nokia N8 for consumers in U.S. and Canada > > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > > http://p.sf.net/sfu/nokia-dev2dev > > _______________________________________________ > > CLucene-developers mailing list > > CLu...@li... > > https://lists.sourceforge.net/lists/listinfo/clucene-developers > > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 20:47:02
|
Hi, I just merged the branch memory_leaks into master. I haven't tested it as thoroughly as I planned, but since both you and Jiri have been working with it from quite some time its probably safe to assume it is stable. There are still some leaks visible from the tests - some were added by you (Veit) in recent tests. I fixed an obvious one in 0f28114. Can you have a look at whats left? I didn't remove the memory_leaks branch yet - please remove at your convenience. Future fixes / patches should appear in their own dedicated branches to ease the testing and merging process anyway... Also, what is the status of the various tasks at hand? This includes: - SpanQueries (https://sourceforge.net/tracker/?func=detail&aid=1483808&group_id=80013&atid=558446 <https://sourceforge.net/tracker/?func=detail&aid=1483808&group_id=80013&atid=558446>) - SpellChecker (https://sourceforge.net/tracker/?func=detail&aid=3113462&group_id=80013&atid=558446 <https://sourceforge.net/tracker/?func=detail&aid=3113462&group_id=80013&atid=558446>) - smart pointers Itamar. On 16/11/2010 10:32 AM, Šplíchal Jiří wrote: > Hi, > > I removed my branches except of the memory_leaks branch because it is not merged with the master yet. > If you do not intend to merge it now, please at least cherry-pick the last commit which is a simple bug fix > in SpanQueryFilter. But it would be great if could merge this branch into master too. > > We are using the merge of the two branches without problems = all tests pass in debug and also in release > on win7 64bit. But there are still some memory leaks left. > > Jiri > > > > -----Original Message----- > From: Itamar Syn-Hershko [mailto:it...@co...] > Sent: Saturday, November 13, 2010 5:20 PM > To: clu...@li... > Subject: Re: [CLucene-dev] NearSpansUnordered bug fix > > All were merged. Please prune your copies. intensive_testing and > veit_working are still there even though they are merged into master > already - owners, please verify and remove them. > > Itamar. > > On 7/11/2010 12:23 AM, Kostka Bořivoj wrote: >> HighlighterFix and FSDirectory_fix are ready to merge, I think >> Borek >> >>> -----Original Message----- >>> From: Itamar Syn-Hershko [mailto:it...@co...] >>> Sent: Saturday, November 06, 2010 4:55 PM >>> To: clu...@li... >>> Subject: Re: [CLucene-dev] NearSpansUnordered bug fix >>> >>> Where are we with the smart_pointers branchs? >>> >>> >>> And which of all the fix branches is ready to be merged to master? >>> >>> >>> I also recall some of you guys should have removed some branches after >>> verifying a merge (I think it was Jiri and Borek). Was it ever done? >>> >>> >>> Itamar. >>> >>> >>> On 3/11/2010 9:23 PM, Veit Jahns wrote: >>> >>>> 2010/11/2 Itamar Syn-Hershko<it...@co...>: >>>>> I'm waiting on some feedback from Veit. >>>> Ups! It seems, that I've lost completely track of something. Can you >>>> give me a clue, Itamar? >>>> >>>> Veit >>>> >>>> ------------------------------------------------------------------------------ >>>> Achieve Improved Network Security with IP and DNS Reputation. >>>> Defend against bad network traffic, including botnets, malware, >>>> phishing sites, and compromised hosts - saving your company time, >>>> money, and embarrassment. Learn More! >>>> http://p.sf.net/sfu/hpdev2dev-nov >>>> _______________________________________________ >>>> CLucene-developers mailing list >>>> CLu...@li... >>>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>>> >>>> >>> ------------------------------------------------------------------------------ >>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >>> David G. Thomson, author of the best-selling book "Blueprint to a >>> Billion" shares his insights and actions to help propel your >>> business during the next growth cycle. Listen Now! >>> http://p.sf.net/sfu/SAP-dev2dev >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> ------------------------------------------------------------------------------ >> The Next 800 Companies to Lead America's Growth: New Video Whitepaper >> David G. Thomson, author of the best-selling book "Blueprint to a >> Billion" shares his insights and actions to help propel your >> business during the next growth cycle. Listen Now! >> http://p.sf.net/sfu/SAP-dev2dev >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> >> > ------------------------------------------------------------------------------ > Centralized Desktop Delivery: Dell and VMware Reference Architecture > Simplifying enterprise desktop deployment and management using > Dell EqualLogic storage and VMware View: A highly scalable, end-to-end > client virtualization framework. Read more! > http://p.sf.net/sfu/dell-eql-dev2dev > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today > http://p.sf.net/sfu/msIE9-sfdev2dev > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 20:46:51
|
Borek, All is merged into master now. What is the status of your intensive_testing branch? Itamar. On 21/10/2010 10:23 AM, Kostka Bořivoj wrote: > Itamar, > > I found the FSDirectory_fix branch is not merged into master. Small but possibly critical bug is fixed here. > I just send this message for case you miseed this fix. > > Borek > >> -----Original Message----- >> From: Itamar Syn-Hershko [mailto:it...@co...] >> Sent: Thursday, October 07, 2010 11:38 PM >> To: clu...@li... >> Subject: Re: [CLucene-dev] Current branches state >> >> >> >> I just had a quick look on Array.h. ArrayBase<T>::resize seems to be >> flawed in so many ways that I just went ahead and rewrote it. Jiri, your >> fix was correct, but it wasn't complete (for example: if deleteValues >> was passed true before values was initialized, it would crash). >> >> >> I checked in what I have done to master since the tests pass and I don't >> think I could break anything with it. Please test and let me know. >> >> >> I'm a bit swamped atm so I hope to review the rest of the pending items >> soon. >> >> >> Itamar. >> >> >> On 23/9/2010 11:19 PM, Šplíchal Jiří wrote: >> >>> Hi, >>> I just published several changes in the memory_leaks branch. Now, following tests >> have been fixed >>> + testRAMDirectory >>> + testsearch >>> + testRangeFilter >>> + testConstantScoreQueries >>> + testsort >>> + testdatefilter >>> + testBitSet >>> + testExtractTerms. >>> >>> We still have to solve the memory leaks produced by the following tests: >>> - testatomicupdates >>> - testindexreader >>> - testanalyzers >>> - testindexwriter >>> - testIndexModifier >>> - testAddIndexesNoOptimize >>> - testutf8 >>> >>> Please, could someone check the changes especially those in the core files: >>> Array.h, DocumentsWriterThreadState.cpp, IndexWriter.cpp? >>> >>> Jiri >>> >>> >>> -----Original Message----- >>> From: Veit Jahns [mailto:nun...@go...] >>> Sent: Wednesday, September 22, 2010 9:32 PM >>> To: clu...@li... >>> Subject: Re: [CLucene-dev] Current branches state >>> >>> 2010/9/20 Šplíchal Jiří<spl...@to...>: >>>> I tested once more our code in order to check the memory leaks. >>>> Here is the list of leaking test suites: >>>> >>>> [...] >>>> >>>> Let us get rid of the leaks! I will start from the bottom >>> Ok. As I was examining memory leaks in CLucene, I observed, that some >>> leaks are caused by the tests themselves. I will take a look what is >>> still left from this effort. >>> >>>> with the testExtractTerms test. Should we create a new branch for this issue? >>> AsI understand Itamar proposal, I'd say yes. >>> >>> Veit >>> >>> ------------------------------------------------------------------------------ >>> Start uncovering the many advantages of virtual appliances >>> and start using them to simplify application deployment and >>> accelerate your shift to cloud computing. >>> http://p.sf.net/sfu/novell-sfdev2dev >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >>> ------------------------------------------------------------------------------ >>> Nokia and AT&T present the 2010 Calling All Innovators-North America contest >>> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada >>> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing >>> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store >>> http://p.sf.net/sfu/nokia-dev2dev >>> _______________________________________________ >>> CLucene-developers mailing list >>> CLu...@li... >>> https://lists.sourceforge.net/lists/listinfo/clucene-developers >> ------------------------------------------------------------------------------ >> Beautiful is writing same markup. Internet Explorer 9 supports >> standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. >> Spend less time writing and rewriting code and more time creating great >> experiences on the web. Be a part of the beta today. >> http://p.sf.net/sfu/beautyoftheweb >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps& games for the Nokia N8 for consumers in U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 20:15:21
|
This looks great! Itamar. On 27/12/2010 5:50 PM, Šplíchal Jiří wrote: > Hello, > > I have extended the current highlighter implementation based on the > implementation in Java Lucene 2.4.1 in order to support > > correct highlighting of Phrase, MultiPhrase and Span queries. This > highlighter is now able to highlight exact the terms that lead > > to the hit. I also implemented some of its tests. > > The sources are located in the highlighter branch of the GIT > repository. We are definitely going to use it as we need the exact > > highlighting. And even if it is based on a newer java version I think > we should add this feature the master branch after testing is done. > > This is the first but already working version. I will continue testing > it so something may still change but those will be only minor changes > -- bug fixes. > > Any feedback is welcome. > > Jiri > > > ------------------------------------------------------------------------------ > Learn how Oracle Real Application Clusters (RAC) One Node allows customers > to consolidate database storage, standardize their database environment, and, > should the need arise, upgrade to a full multi-node Oracle RAC database > without downtime or disruption > http://p.sf.net/sfu/oracle-sfdevnl > > > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 18:18:56
|
I mean - I cherry-picked that commit, and also merged TermPositionsQueue_fix into master and deleted it. Itamar. On 27/1/2011 8:15 PM, Itamar Syn-Hershko wrote: > I pulled your change and merged to master. Also deleted the fix > branch. Thanks. > > > Itamar. > > > On 21/1/2011 2:58 PM, Šplíchal Jiří wrote: > >> Hello, >> >> I found a and corrected bug in MultiLevelSkipListReader::init method. >> >> This bug is serious but quite simple to correct so it would be great >> to merge the fix >> >> to master. I uploaded the fix to the highlighter branch as it is >> necessary for the >> >> new position based highlighting feature. >> >> Jiri >> >> -- >> >> Jiří Šplíchal >> >> TOVEK, spol. s r.o. >> >> spl...@to... <mailto:spl...@to...> >> >> +420 606671930 >> >> >> ------------------------------------------------------------------------------ >> Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! >> Finally, a world-class log management solution at an even better price-free! >> Download using promo code Free_Logger_4_Dev2Dev. Offer expires >> February 28th, so secure your free ArcSight Logger TODAY! >> http://p.sf.net/sfu/arcsight-sfd2d >> >> >> _______________________________________________ >> CLucene-developers mailing list >> CLu...@li... >> https://lists.sourceforge.net/lists/listinfo/clucene-developers > > > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > > > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 18:16:47
|
I pulled your change and merged to master. Also deleted the fix branch. Thanks. Itamar. On 21/1/2011 2:58 PM, Šplíchal Jiří wrote: > Hello, > > I found a and corrected bug in MultiLevelSkipListReader::init method. > > This bug is serious but quite simple to correct so it would be great > to merge the fix > > to master. I uploaded the fix to the highlighter branch as it is > necessary for the > > new position based highlighting feature. > > Jiri > > -- > > Jiří Šplíchal > > TOVEK, spol. s r.o. > > spl...@to... <mailto:spl...@to...> > > +420 606671930 > > > ------------------------------------------------------------------------------ > Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! > Finally, a world-class log management solution at an even better price-free! > Download using promo code Free_Logger_4_Dev2Dev. Offer expires > February 28th, so secure your free ArcSight Logger TODAY! > http://p.sf.net/sfu/arcsight-sfd2d > > > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 18:07:21
|
I think you might find BM25 useful: http://nlp.uned.es/~jperezi/Lucene-BM25/ <http://nlp.uned.es/%7Ejperezi/Lucene-BM25/> https://issues.apache.org/jira/browse/LUCENE-2091 Other than that, CLucene should follow Lucene's API especially in those areas... Itamar. On 21/10/2010 8:41 PM, Šplíchal Jiří wrote: > Hi, > > I have to change clucene scoring in the way that the number of > documents that contain a certain term > > does not influence the final score when querying documents using this > term. > > In other words I have to make the score of a document independent of > content of the index -- it should > > be influenced only by the document itself and the query. > > I understood that to achieve this it is enough to overwrite the > Similarity and make the inverse document > > frequency - idf constant. This seems to work fine. But I noticed that > the base class Similarity contains two other > > idf() functions which are not virtual -- especially the float_t > Similarity::idf(Term* term, Searcher* searcher) > > which retrieves the document frequency and calls the virtual idf() > function to compute the result. > > I was wondering whether we could make those two other functions also > virtual so that I could save retrieving > > the document frequency at all. I could just return the constant value. > > Jiri > > > ------------------------------------------------------------------------------ > Nokia and AT&T present the 2010 Calling All Innovators-North America contest > Create new apps& games for the Nokia N8 for consumers in U.S. and Canada > $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing > Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store > http://p.sf.net/sfu/nokia-dev2dev > > > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 18:04:10
|
Hi,
If malloc / realloc returns NULL the indexing process has to be aborted
anyway, and the only way I can think of doing this is throwing an
exception. Did you have other idea in mind?
Also, I'm not sure why growBuffer is used there at all. This is a simple
TCHAR array being used as a buffer, why can't we generalize this piece
of code or use some STL alternatives?
Looking in files_list.txt it seems to be Ben's code, so perhaps he can
give us some answers...
Itamar.
On 22/10/2010 12:12 PM, Rustem Alimov wrote:
> Hi,
>
> src/core/CLucene/index/SegmentTermEnum.cpp : line 377
>
> [code]
> //Instantiate the new buffer + 1 is needed for terminator '\0'
> if ( buffer == NULL )
> buffer = (TCHAR*)malloc(sizeof(TCHAR) * (bufferLength+1));
> else
> buffer = (TCHAR*)realloc(buffer, sizeof(TCHAR) *
> (bufferLength+1));
>
> if ( copy || force_copy){
> //Copy the text of term into buffer
> _tcsncpy(buffer,_term->text(),bufferLength);
> }
> [/code]
>
> If malloc / realloc return NULL?
>
>
> ------------------------------------------------------------------------------
> Nokia and AT&T present the 2010 Calling All Innovators-North America contest
> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada
> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
> http://p.sf.net/sfu/nokia-dev2dev
>
>
> _______________________________________________
> CLucene-developers mailing list
> CLu...@li...
> https://lists.sourceforge.net/lists/listinfo/clucene-developers
|
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 17:55:54
|
Hi,
Tests are running smooth for me here, but I do recall we had a test
failing there.
Can you post some code which will allow us to reproduce this?
Itamar.
On 25/10/2010 2:13 PM, Matt Ronge wrote:
> Hi,
>
> I'm just getting started with CLucene and I'm running into a precondition that is failing. I grabbed the latest snapshot from Git (just a day or two ago), here is the error I'm getting:
>
> file:/Users/mronge/Projects/clucene/src/core/CLucene/index/TermInfosWriter.cpp line:161
> Terms are out of order: field=body (number 0) lastField=body (number 0) text= lastText=\377x
>
> Here is the precondition:
>
> CND_PRECONDITION(compareToLastTerm(fieldNumber, termText, termTextLength)< 0 ||
> (isIndex&& termTextLength == 0&& lastTermTextLength == 0),
> (string("Terms are out of order: field=") + Misc::toString(fieldInfos->fieldName(fieldNumber)) +
> " (number " + Misc::toString(fieldNumber) + ")" +
> " lastField=" + Misc::toString(fieldInfos->fieldName(lastFieldNumber)) +
> " (number " + Misc::toString(lastFieldNumber) + ")" +
> " text=" + Misc::toString(termText, termTextLength) +
> " lastText=" + Misc::toString(lastTermText.values, lastTermTextLength)
> ).c_str() );
>
> > From looking at compareToLastTerm it appears it returns 1 if the length termText is< length of lastTermText, so it fails here when termText is empty. Is this correct? Shouldn't it just return -1 when when termText is empty, since "empty" could be ordered in front of everything else?
>
> Thanks!
> Matt
> ------------------------------------------------------------------------------
> Nokia and AT&T present the 2010 Calling All Innovators-North America contest
> Create new apps& games for the Nokia N8 for consumers in U.S. and Canada
> $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
> Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store
> http://p.sf.net/sfu/nokia-dev2dev
> _______________________________________________
> CLucene-developers mailing list
> CLu...@li...
> https://lists.sourceforge.net/lists/listinfo/clucene-developers
>
>
|
|
From: Itamar Syn-H. <it...@co...> - 2011-01-27 17:53:01
|
Hi, ParallelMultiSearcher wasn't ported yet. You are welcome to port it yourself - have a look at search/ParallelMultiSearcher.java and search/MultiSearcher.java. Itamar. On 8/11/2010 12:23 PM, Rajendra Prasad Murakonda wrote: > I can's seem to find ParallelMultiSearcher. I couldn't locate the > class in the latest source code snap shot too. Is it not supported in > cLucene? What do I need to do to use it - I used MultiSearcher > succesfully though. Any pointers will be really helpful. > > Raj > > > ------------------------------------------------------------------------------ > The Next 800 Companies to Lead America's Growth: New Video Whitepaper > David G. Thomson, author of the best-selling book "Blueprint to a > Billion" shares his insights and actions to help propel your > business during the next growth cycle. Listen Now! > http://p.sf.net/sfu/SAP-dev2dev > > > _______________________________________________ > CLucene-developers mailing list > CLu...@li... > https://lists.sourceforge.net/lists/listinfo/clucene-developers |
|
From: Veit J. <nun...@go...> - 2011-01-22 22:29:44
|
Hi Alexander, I created a test cased based on the code you once sent me. I get the same result, i.e., that there seems to be a bug. I will take a closer look tomorrow. Kind regards, Veit |
|
From: Veit J. <nun...@go...> - 2011-01-22 22:14:48
|
Hi Manuel! > here are my changes, due to the ANSI compiler errors. The code no longer uses std::wstring now. > > [...] Thanks for the patch. I had trouble with the commit file, so I used only the patch file. The patch is now added and submitted it to the repository in the corresponding branch. > I'm still don't know why the suggestSimilar-function doesn't return the TCHAR** correct, when the IDE is not attached. But i'm looking forward to find the problem :) It seems that it does work now---at least on Win7. I will check Ubuntu tomorrow. Kind regards, Veit |