<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.jakarta.lucene.clucene.devel">
    <title>gmane.comp.jakarta.lucene.clucene.devel</title>
    <link>http://blog.gmane.org/gmane.comp.jakarta.lucene.clucene.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4156"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4155"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4152"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4151"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4149"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4148"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4146"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4144"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4143"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4138"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4135"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4134"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4131"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4129"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4125"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4119"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4118"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4116"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4113"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4111"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4156">
    <title>Bug found in FieldsReader::addFieldsForMerge</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4156</link>
    <description>&lt;pre&gt;Hi

I found a bug in addFieldsForMerge method. For bingy/compressed fields internal pointer from ValueArray is passed to FieldForMerge constructor instead of (correct) pointer to ValueArray object.

I uploaded propřed patch to GIT (branch addFieldsForMerge_BugFix)

Best regards

Borek

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
CLucene-developers mailing list
CLucene-developers&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>Kostka Bořivoj</dc:creator>
    <dc:date>2013-05-13T14:04:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4155">
    <title>StandardAnalyzer Memory Leak Patch</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4155</link>
    <description>&lt;pre&gt;Dear All,

I've detected some memory leaks using CLucene (version 2.3.3.4) and
tracked this down to the reusableTokenStream interface of the
StandardAnalyzer.

The StandardAnalyzer::SavedStreams object which is allocated on the
first call to reusableTokenStream is eventually deleted (using an
Object AbstractDeletor) but it does not have a destructor.  The
solution was to add a destructor as follows:

index 3275c1b..6836629 100644
--- a/clucene-core-2.3.3.4/src/core/CLucene/analysis/standard/StandardAnalyzer.cpp
+++ b/clucene-core-2.3.3.4/src/core/CLucene/analysis/standard/StandardAnalyzer.cpp
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -54,6 +54,11 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; CL_NS_DEF2(analysis,standard)
             {
             }

+            ~SavedStreams()
+            {
+                _CLDELETE(filteredTokenStream);
+            }
+
             void close(){}
             Token* next(Token* token) {return NULL;}
         };

Could this patch be reviewed and incorporated into the master?

Thanks,
Anthony

---------------------------------------------------------&lt;/pre&gt;</description>
    <dc:creator>Anthony Novatsis</dc:creator>
    <dc:date>2013-05-10T00:43:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4152">
    <title>Request for explanation of some code</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4152</link>
    <description>&lt;pre&gt;Dear All,

I am a postgraduate student and I am not an expert in programming. I am
doing a project on search and want to implement some new ideas and test on
clucene.


It is a huge code and looks complicated too. If any one please explain me
the indexing process and the classes like FSDirectory, Field, Document,
IndexWriter  it will be really a great help at this moment.

Thanks
Arnab
------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html_______________________________________________
CLucene-developers mailing list
CLucene-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>Arnab</dc:creator>
    <dc:date>2013-04-08T20:42:31</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4151">
    <title>add</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4151</link>
    <description>&lt;pre&gt;
------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html_______________________________________________
CLucene-developers mailing list
CLucene-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>Arnab</dc:creator>
    <dc:date>2013-04-08T20:35:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4149">
    <title>Multi-Threading on Kubuntu 12.04</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4149</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
Own the Future-Intel(R) Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest. Compete 
for recognition, cash, and the chance to get your game on Steam. 
$5K grand prize plus 10 genre and skill prizes. Submit your demo 
by 6/6/13. http://altfarm.mediaplex.com/ad/ck/12124-176961-30367-2_______________________________________________
CLucene-developers mailing list
CLucene-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>Ahmed Saidi</dc:creator>
    <dc:date>2013-03-29T10:16:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4148">
    <title>qmake clucene-core-2.3.3.4 errors</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4148</link>
    <description>&lt;pre&gt; OK this new topics form me i tried to build the last core of clucene :

http://sourceforge.net/projects/clucene/files/latest/download?source=files

with cmake gui and i faced a lot of trouble then insted i used qmake to
build the core i used the last version open source qt5 with mingw support
and at firrst it worked then i after finishing i got two error :

folder to :

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb_______________________________________________
CLucene-developers mailing list
CLucene-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>jomart mirza</dc:creator>
    <dc:date>2013-02-23T13:48:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4146">
    <title>Snowball Analyzer</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4146</link>
    <description>&lt;pre&gt;Hi all, for cross platform reasons we are re-writing parts of our main application using C++, including the indexing. Until recently it had been written in .Net, and we were using Lucene.Net and the SnowballAnalyzer.
Is there a snowball analyser for CLucene? The link on the FAQ site to the CLucene sandbox is broken, is this still a viable project?

Cheers.
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb_______________________________________________
CLucene-developers mailing list
CLucene-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>Scott Baldwin</dc:creator>
    <dc:date>2013-02-05T01:24:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4144">
    <title>Resolve compile problems with /ext include</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4144</link>
    <description>&lt;pre&gt;
The following changes since commit 4f62f2a90ecbea0d6d14e4bc0902056996144023:

  Merge branch 'ConstantScoreQuery_BugFix' (2012-12-14 11:50:42 +0100)

are available in the git repository at:


  git://git.inai.de/clucene master

for you to fetch changes up to 78439b9688927c4dcd89f10c2090d10a8dbbb074:

  clucene: avoid causing compile failures in downstream users (2013-01-25 02:56:22 +0100)

----------------------------------------------------------------
Jan Engelhardt (1):
      clucene: avoid causing compile failures in downstream users

 src/core/libclucene-core.pc.cmake |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
&lt;/pre&gt;</description>
    <dc:creator>Jan Engelhardt</dc:creator>
    <dc:date>2013-01-25T01:58:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4143">
    <title>Problems in SloppyPhraseScorer.cpp</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4143</link>
    <description>&lt;pre&gt;Team

Looks like there are two problems in SloppyPhraseScorer.cpp:

1) checkedRepeats doesn't get initialized in the constructor and has
varying values upon entry into initPhrasePositions() -- noticed in the
Debug vs Release mode.

This is inherited from the Java code, which doesn't have this
initialization either.

Easily fixed by adding checkedRepeats = false; to the SloppyPhraseScorer
constructor.

2) std::qsort(repeats, repeatsLen, sizeof(PhrasePositions*),
comparePhrasePositions);

For some reason, comparePhrasePosition is receiving (x,y) with unexpected
(apparently random) values in the offset field.

Unable to suggest a fix -- as a stopgap, just replaced std::qsort with
std::sort -- as follows:
std::sort(repeats, repeats + (repeatsLen-1), comparePhrasePositions);

No idea if / how these changes will affect tests.

Regards
Celto
------------------------------------------------------------------------------
Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS
and more. Get SQL Server s&lt;/pre&gt;</description>
    <dc:creator>cel tix44</dc:creator>
    <dc:date>2013-01-08T09:26:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4138">
    <title>Compiling issues CLucene Windows 7 64 bit x86</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4138</link>
    <description>&lt;pre&gt;

During several days I am trying to compile CLucene on Windows 7 64 bit without
success.

I searched all over the internet but did not find a solution for my problem.

I will describe all steps which I took and hope somebody can help me further.

    I downloaded CLucene and extracted it to the folder
C:/Users/Gerda/Downloads/clucene-core-2.3.3.4/clucene-core-2.3.3.4

    I created the out of source build directory C:/CLucene

    I installed boost 1.40 using the binary installer from boostpro computing

    I installed Cmake 2.8.10

    I started a regular windows command line prompt and entered

    set BOOST_BUILD_PATH=C:\Program Files (x86)\boost\boost_1_40\tools\build\v2
set BOOST_PATH=C:\Program Files (x86)\boost set BOOST_ROOT=C:\Program Files
(x86)\boost\boost_1_40

    I start cmake Gui and set the folders to the ones I mentioned in 1 and 2. I
select Microsoft Visual Studio 9 compiler.

After clicking configure I get the following error message: CMake Error: CMake
was unable to find a build program&lt;/pre&gt;</description>
    <dc:creator>Jonas</dc:creator>
    <dc:date>2013-01-03T20:53:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4135">
    <title>clucene-core-2.3.3.4 build issue in ubuntu</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4135</link>
    <description>&lt;pre&gt;Dear All,

Sorry to overload your mailbox. I am unable to build and install CLucene
2.3.3.4 in ubuntu 12.04. Request your help. -Thanks.
The command and output as follows.

*$ clucene-core-2.3.3.4/build-linux$ cmake -G "Unix Makefiles" ../
&lt;/pre&gt;</description>
    <dc:creator>Saiful Khan</dc:creator>
    <dc:date>2012-12-30T21:19:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4134">
    <title>clucene-core-2.3.3.4 build issue in ubuntu</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4134</link>
    <description>&lt;pre&gt;Dear All,

I am new to CLucene and I want to build and install
clucene-core-2.3.3.4 in my Ubuntu-12.04LTS machine. I do need this IR
system for academic research purpose and over the next several years I
am looking forward to contribute to it.

However, at the very first step while trying to configure it I am
getting the following error. Please let me know if you need more
information. Humbly request your quick response.  -Thanks



Compiling as RelWithDebInfo
CMake Error at src/shared/cmake/MacroMustDefine.cmake:45 (MESSAGE):
  wcslen could not be found
Call Stack (most recent call first):
  src/shared/CMakeLists.txt:97 (CHECK_REQUIRED_FUNCTIONS)

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu&lt;/pre&gt;</description>
    <dc:creator>Saiful Khan</dc:creator>
    <dc:date>2012-12-30T20:06:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4131">
    <title>BitSet::nextSetBit very inefficient for sparse bitsets</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4131</link>
    <description>&lt;pre&gt;BitSet::nexSetBit is implemented very inefficient way for sparse bit sets. It searches for next bit set by per-bit iteration and bit shifting
See OPTIMIZED_BITSET branch for better solution. It is approximately 8 times faster. It could be still improved (probably 4 times faster) by 
using uint32_t instead of current uint8_8 array, but it needs deeper changes.
Borek

------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
&lt;/pre&gt;</description>
    <dc:creator>Kostka Bořivoj</dc:creator>
    <dc:date>2012-12-12T14:27:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4129">
    <title>Getting link error</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4129</link>
    <description>&lt;pre&gt;Hello CLucene Developers,

I am requesting you to help me in resolving this issue with CLucene.

This is first time i am using CLucene.

I have created a solution out of CLucene and copied the "include" and "lib"
folder to my application (ASCII supported only)  and i am accessing
CLucene.h and the libraries to access the CLucene.

When i am building (make or rebuild) my application folder i am getting
this (pasted at end) error.
I also created an independent solution like demo project and was able to
access well but not sure why i am getting link error here.
the lib but after re-checking all i am not able find any issue.


Please help. i might not have provided entire context but some at least so
please let me know if you need some more info.
I am using VS2008


Error:
xxxxxx.obj : error LNK2001: unresolved external symbol "public: virtual
bool __thiscall lucene::store::RAMDirectory::list(class
stlpd_std::vector&amp;lt;class stlpd_std::basic_string&amp;lt;char,class
stlpd_std::char_traits&amp;lt;char&amp;gt;,class stlpd_std::allocator&amp;lt;&lt;/pre&gt;</description>
    <dc:creator>Rajeev kumar Singh</dc:creator>
    <dc:date>2012-12-06T17:35:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4125">
    <title>Contrib lib build</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4125</link>
    <description>&lt;pre&gt;Hi all,
I unable to build contrib library on Windows 7 64 bit.
I created clucene-contribs-lib solution(Visual Studio 2010) using CMAKE UI.
I added clucene-core.lib and clucene-shared.lib as additional dependencies.
But then I try to build it I get multiple link errors:
LanguageBasedAnalyzer.obj : error LNK2001: unresolved external symbol
"public: virtual class lucene::analysis::TokenStream * __cdecl
lucene::analysis::Analyzer::reusableTokenStream(char const *,class
lucene::util::Reader *)" (?reusableTokenStream&amp;lt; at &amp;gt;Analyzer&amp;lt; at &amp;gt;analysis&amp;lt; at &amp;gt;lucene
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt;UEAAPEAVTokenStream&amp;lt; at &amp;gt;23&amp;lt; at &amp;gt;PEBDPEAVReader&amp;lt; at &amp;gt;util&amp;lt; at &amp;gt;3&amp;lt; at &amp;gt;&amp;lt; at &amp;gt;Z) ...
...
...
C:\Tools\Clucene\clucene-core-2.3.3.4\windows_x64_contrib\Release\clucene-contribs-lib.dll
: fatal error LNK1120: 34 unresolved externals

It's seems that it for some reason clucene-contribs-lib can't find exports
from clucene-core.lib.

Thanks in advance, Vitaly
------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web c&lt;/pre&gt;</description>
    <dc:creator>Vitaly Artemov</dc:creator>
    <dc:date>2012-11-25T13:09:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4119">
    <title>Creating CLucene Index in a Database;Support for Asian languages</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4119</link>
    <description>&lt;pre&gt;Hello all,
I starting to evaluate Clucene engine for using in our product.
I have 2 questions.

1. Is It planned to add support(or it already exists) for creating index in
the Database instead of memory or filesystem?
    I read that java Lucene has it by providing JdbcDirectory interface.

2. I read in the FAQ that:
 "CLucene is not limited to English, nor any other language. To index text
properly, you need to use an Analyzer appropriate for the language of the
text you are indexing. CLucene's default Analyzers work well for English.
There are a    number of other Analyzers in "CLucene Sandbox", including
those for Chinese, Japanese, and Korean."
   But "CLucene Sandbox" link is not works for some reason. Can you specify
link to Analyzers list?

Thanks in advance, Vitaly
------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infras&lt;/pre&gt;</description>
    <dc:creator>Vitaly Artemov</dc:creator>
    <dc:date>2012-11-22T09:15:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4118">
    <title>Bug in ConstantScorer</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4118</link>
    <description>&lt;pre&gt;Hi,

ConstantScorer destructor deletes bits returned by filter-&amp;gt;bits() method (called in constructor)
without checking if filter-&amp;gt;shouldDeleteBitSet() returns true.

This causes double deletion of bits in case the filter is derived from AbstractCachingFilter.

Proposed fix (in constantscorequery.cpp) attached


------------------------------------------------------------------------------
Monitor your physical, virtual and cloud infrastructure from a single
web console. Get in-depth insight into apps, servers, databases, vmware,
SAP, cloud infrastructure, etc. Download 30-day Free Trial.
Pricing starts from $795 for 25 servers or applications!
http://p.sf.net/sfu/zoho_dev2dev_nov_______________________________________________
CLucene-developers mailing list
CLucene-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>Kostka Bořivoj</dc:creator>
    <dc:date>2012-11-15T15:10:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4116">
    <title>problem building clucene-php</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4116</link>
    <description>&lt;pre&gt;LS,



We are trying to build/compile clucene for php (
http://pecl.php.net/package/clucene ) on a centos server ( 64bit ). For
this we had first installed the clucene-core and clucene-core-devel
packages. But no luck all errors. So we decided to build clucene ourselves.



This went ok, but the compiling of clucene for php again failed.  I think
it has to do that there is no /usr/local/include/CLucene/util/Misc.h, as
the error below states  “’Misc’ has not been declared”.



Can anybody help us out and see what is going wrong or how we can build the
clucene including this Misc.h?



The way we build clucene was



                Download tar.gz, unpacked

                Cd clucence

mkdir build &amp;amp;&amp;amp; cd build

cmake ..

make

make install



Then we went to clucene-0.0.9 ( pecl package )



                Phpize

                ./configure

                Make    ( here it went wrong see errors below )



/var/tmp/clucene/clucene.cpp:56: warning: deprecated conversion from string
constant to âcha&lt;/pre&gt;</description>
    <dc:creator>Paul Groeneweg | Pazion IT</dc:creator>
    <dc:date>2012-10-25T07:40:00</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4113">
    <title>bit out of range</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4113</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev_______________________________________________
CLucene-developers mailing list
CLucene-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&amp;lt; at &amp;gt;public.gmane.org
https://lists.sourceforge.net/lists/listinfo/clucene-developers
&lt;/pre&gt;</description>
    <dc:creator>Ahmed</dc:creator>
    <dc:date>2012-10-05T08:53:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4111">
    <title>TODO List?</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4111</link>
    <description>&lt;pre&gt;Hi All,

I recently stumbled upon CLucene and am wondering if this is actively
developed anymore? Also, is there a TODO list that I can look at to pickup
a bug or something like a bug tracker to help me pickup something simple to
start with?

&lt;/pre&gt;</description>
    <dc:creator>Atul Kulkarni</dc:creator>
    <dc:date>2012-08-14T23:49:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4109">
    <title>Ordering results</title>
    <link>http://comments.gmane.org/gmane.comp.jakarta.lucene.clucene.devel/4109</link>
    <description>&lt;pre&gt;I am doing a query and want to sort all the matched data by one of the
fields (date).

Whats the best way of doing this ?


The search will potentially match a lot of rows - so for performance I've
subclassed HitCollector and am adding all the returned documentIDs to a
list of integers if that makes any difference :


 reader = IndexReader::open(...);
 q = QueryParser::parse(...);
 s = new IndexSearcher(reader);
 s-&amp;gt;_search(q, NULL, &amp;amp;hc);





class myHitCollector : public HitCollector {

private :
       list&amp;lt;int32_t&amp;gt; hitList;

public:
        int hitListCount;

        myHitCollector() : HitCollector() {
                clear();
                hitListCount=0;
        }

        void clear() {
                hitList.clear();
        }

        void push(int32_t doc) {
                hitList.push_back(doc);
                hitListCount++;
        }

        int  pop() {
                int32_t doc=hitList.front();
                hitList.pop_front();
                hitListCount--;
                return &lt;/pre&gt;</description>
    <dc:creator>Mike Aubury</dc:creator>
    <dc:date>2012-07-20T11:42:05</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.jakarta.lucene.clucene.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.jakarta.lucene.clucene.devel</link>
  </textinput>
</rdf:RDF>
