Added: lucy/site/trunk/content/docs/perl/LucyX/Index/LongFieldSim.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Index/LongFieldSim.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Index/LongFieldSim.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Index/LongFieldSim.mdtext Mon Apr  
4 09:22:30 2016
@@ -0,0 +1,93 @@
+Title: LucyX::Index::LongFieldSim – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Index::LongFieldSim - Similarity optimized for long fields.</p>
+
+<h2><a class='u'
+name="SYNOPSIS"
+>SYNOPSIS</a></h2>
+
+<pre>package MySchema::body;
+use base qw( Lucy::Plan::FullTextType );
+use LucyX::Index::LongFieldSim;
+sub make_similarity { LucyX::Index::LongFieldSim-&#62;new }</pre>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>Apache Lucy&#39;s default <a href="../../Lucy/Index/Similarity.html" 
class="podlinkpod"
+>Similarity</a> implmentation produces a bias towards extremely short 
fields.</p>
+
+<pre>Lucy::Index::Similarity
+
+| more weight
+| *
+|  **  
+|    ***
+|       **********
+|                 ********************
+|                                     *******************************
+| less weight                                                        ****
+|------------------------------------------------------------------------
+  fewer tokens                                              more tokens</pre>
+
+<p>LongFieldSim eliminates this bias.</p>
+
+<pre>LucyX::Index::LongFieldSim
+
+| more weight
+| 
+|    
+|    
+|*****************
+|                 ********************
+|                                     *******************************
+| less weight                                                        ****
+|------------------------------------------------------------------------
+  fewer tokens                                              more tokens</pre>
+
+<p>In most cases,
+the default bias towards short fields is desirable.
+For instance,
+say you have two documents:</p>
+
+<ul>
+<li>&#34;George Washington&#34;</li>
+
+<li>&#34;George Washington Carver&#34;</li>
+</ul>
+
+<p>If a user searches for &#34;george washington&#34;,
+we want the exact title match to appear first.
+Under the default Similarity implementation it will,
+because the &#34;Carver&#34; in &#34;George Washington Carver&#34; dilutes the 
impact of the other two tokens.</p>
+
+<p>However,
+under LongFieldSim,
+the two titles will yield equal scores.
+That would be bad in this particular case,
+but it could be good in another.</p>
+
+<pre> &#34;George Washington Carver is cool.&#34;
+
+ &#34;George Washington Carver was born on the eve of the US Civil War, in
+ 1864.  His exact date of birth is unknown... Carver&#39;s research in crop
+ rotation revolutionized agriculture...&#34;</pre>
+
+<p>The first document is succinct,
+but useless.
+Unfortunately,
+the default similarity will assess it as extremely relevant to a query of 
&#34;george washington carver&#34;.
+However,
+under LongFieldSim,
+the short-field bias is eliminated,
+and the addition of other mentions of Carver&#39;s name in the second document 
yield a higher score and a higher rank.</p>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocReader.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocReader.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocReader.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocReader.mdtext Mon Apr  
4 09:22:30 2016
@@ -0,0 +1,19 @@
+Title: LucyX::Index::ZlibDocReader – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Index::ZlibDocReader - Compressed doc storage.</p>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>This is a proof-of-concept class to demonstrate alternate implementations 
for fetching documents.
+It is unsupported.</p>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocWriter.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocWriter.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocWriter.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Index/ZlibDocWriter.mdtext Mon Apr  
4 09:22:30 2016
@@ -0,0 +1,19 @@
+Title: LucyX::Index::ZlibDocWriter – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Index::ZlibDocWriter - Compressed doc storage.</p>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>This is a proof-of-concept class to demonstrate alternate implementations 
for fetching documents.
+It is unsupported.</p>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Remote/ClusterSearcher.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Remote/ClusterSearcher.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Remote/ClusterSearcher.mdtext 
(added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Remote/ClusterSearcher.mdtext Mon 
Apr  4 09:22:30 2016
@@ -0,0 +1,53 @@
+Title: LucyX::Remote::ClusterSearcher – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Remote::ClusterSearcher - Search multiple remote indexes.</p>
+
+<h2><a class='u'
+name="SYNOPSIS"
+>SYNOPSIS</a></h2>
+
+<pre>my $searcher = eval {
+    LucyX::Remote::ClusterSearcher-&#62;new(
+        schema =&#62; MySchema-&#62;new,
+        shards =&#62; [ &#39;search1:7890&#39;, &#39;search2:7890&#39;, 
&#39;search3:7890&#39; ],
+    );
+};
+...
+my $hits = eval { $searcher-&#62;hits( query =&#62; $query ) };</pre>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>ClusterSearcher is a subclass of <a href="../../Lucy/Search/Searcher.html" 
class="podlinkpod"
+>Lucy::Search::Searcher</a> which can be used to search a composite index made 
up of multiple shards,
+where each shard is represented by a host:port pair running <a 
href="../../LucyX/Remote/SearchServer.html" class="podlinkpod"
+>LucyX::Remote::SearchServer</a>.</p>
+
+<h2><a class='u'
+name="METHODS"
+>METHODS</a></h2>
+
+<h3><a class='u'
+name="new"
+>new</a></h3>
+
+<p>Constructor.
+Takes hash-style params.</p>
+
+<ul>
+<li><b>schema</b> - A Schema,
+which must match the Schema used by each remote node.</li>
+
+<li><b>shards</b> - An array of host:port pairs running 
LucyX::Remote::SearchServer instances,
+which identifying the shards that make up the composite index.</li>
+</ul>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchClient.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchClient.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchClient.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchClient.mdtext Mon Apr  
4 09:22:30 2016
@@ -0,0 +1,48 @@
+Title: LucyX::Remote::SearchClient – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<p>Make a remote procedure call.
+For every call that does not close/terminate the socket connection,
+expect a response back that&#39;s been serialized using Storable.</p>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Remote::SearchClient - Connect to a remote SearchServer.</p>
+
+<h2><a class='u'
+name="SYNOPSIS"
+>SYNOPSIS</a></h2>
+
+<pre>my $client = LucyX::Remote::SearchClient-&#62;new(
+    peer_address =&#62; &#39;searchserver1:7890&#39;,
+);
+my $hits = $client-&#62;hits( query =&#62; $query );</pre>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>SearchClient is a subclass of <a href="../../Lucy/Search/Searcher.html" 
class="podlinkpod"
+>Lucy::Search::Searcher</a> which can be used to search an index on a remote 
machine made accessible via <a href="../../LucyX/Remote/SearchServer.html" 
class="podlinkpod"
+>SearchServer</a>.</p>
+
+<h2><a class='u'
+name="METHODS"
+>METHODS</a></h2>
+
+<h3><a class='u'
+name="new"
+>new</a></h3>
+
+<p>Constructor.
+Takes hash-style params.</p>
+
+<ul>
+<li><b>peer_address</b> - The name/IP and the port number which the client 
should attempt to connect to.</li>
+</ul>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchServer.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchServer.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchServer.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Remote/SearchServer.mdtext Mon Apr  
4 09:22:30 2016
@@ -0,0 +1,86 @@
+Title: LucyX::Remote::SearchServer – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Remote::SearchServer - Make a Searcher remotely accessible.</p>
+
+<h2><a class='u'
+name="SYNOPSIS"
+>SYNOPSIS</a></h2>
+
+<pre>my $searcher = Lucy::Search::IndexSearcher-&#62;new( 
+    index =&#62; &#39;/path/to/index&#39; 
+);
+my $search_server = LucyX::Remote::SearchServer-&#62;new(
+    searcher =&#62; $searcher
+);
+$search_server-&#62;serve(
+    port =&#62; 7890
+);</pre>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>The SearchServer class,
+in conjunction with either <a href="../../LucyX/Remote/SearchClient.html" 
class="podlinkpod"
+>SearchClient</a> or <a href="../../LucyX/Remote/ClusterSearcher.html" 
class="podlinkpod"
+>ClusterSearcher</a>,
+makes it possible to run a search on one machine and report results on 
another.</p>
+
+<p>By aggregating several SearchClients under a ClusterSearcher,
+the cost of searching what might have been a prohibitively large monolithic 
index can be distributed across multiple nodes,
+each with its own,
+smaller index.</p>
+
+<h2><a class='u'
+name="METHODS"
+>METHODS</a></h2>
+
+<h3><a class='u'
+name="new"
+>new</a></h3>
+
+<pre>my $search_server = LucyX::Remote::SearchServer-&#62;new(
+    searcher =&#62; $searcher, # required
+);</pre>
+
+<p>Constructor.
+Takes hash-style parameters.</p>
+
+<ul>
+<li><b>searcher</b> - the <a href="../../Lucy/Search/IndexSearcher.html" 
class="podlinkpod"
+>Searcher</a> that the SearchServer will wrap.</li>
+</ul>
+
+<h3><a class='u'
+name="serve"
+>serve</a></h3>
+
+<pre>$search_server-&#62;serve(
+    port =&#62; 7890,      # required
+);</pre>
+
+<p>Open a listening socket on localhost and wait for SearchClients to 
connect.</p>
+
+<ul>
+<li><b>port</b> - the port on localhost that the server should open and listen 
on.</li>
+</ul>
+
+<h3><a class='u'
+name="serve_rpc"
+>serve_rpc</a></h3>
+
+<pre>my $status = $search_server-&#62;serve_rpc($sock);</pre>
+
+<p>Handle a single RPC from socket $sock.
+Returns &#39;done&#39; if the connection should be closed.
+Returns &#39;terminate&#39; if the server should shut down.
+Returns &#39;continue&#39; if the server should continue to handle requests 
from this client.</p>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Search/Filter.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Search/Filter.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Search/Filter.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Search/Filter.mdtext Mon Apr  4 
09:22:30 2016
@@ -0,0 +1,79 @@
+Title: LucyX::Search::Filter – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Search::Filter - Build a caching filter based on results of a 
Query.</p>
+
+<h2><a class='u'
+name="SYNOPSIS"
+>SYNOPSIS</a></h2>
+
+<pre>my %category_filters;
+for my $category (qw( sweet sour salty bitter )) {
+    my $cat_query = Lucy::Search::TermQuery-&#62;new(
+        field =&#62; &#39;category&#39;,
+        term  =&#62; $category,
+    );
+    $category_filters{$category} = LucyX::Search::Filter-&#62;new( 
+        query =&#62; $cat_query, 
+    );
+}
+
+while ( my $cgi = CGI::Fast-&#62;new ) {
+    my $user_query = $cgi-&#62;param(&#39;q&#39;);
+    my $filter     = $category_filters{ $cgi-&#62;param(&#39;category&#39;) };
+    my $and_query  = Lucy::Search::ANDQuery-&#62;new;
+    $and_query-&#62;add_child($user_query);
+    $and_query-&#62;add_child($filter);
+    my $hits = $searcher-&#62;hits( query =&#62; $and_query );
+    ...</pre>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>A Filter is a <a href="../../Lucy/Search/Query.html" class="podlinkpod"
+>Lucy::Search::Query</a> subclass that can be used to filter the results of 
another Query.
+The effect is very similar to simply using the wrapped inner query,
+but there are two important differences:</p>
+
+<ul>
+<li>A Filter does not contribute to the score of the documents it matches.</li>
+
+<li>A Filter caches its results,
+so it is more efficient if you use it more than once.</li>
+</ul>
+
+<p>To obtain logically equivalent results to the Filter but avoid the caching,
+substitute the wrapped query but use set_boost() to set its <code>boost</code> 
to 0.</p>
+
+<h2><a class='u'
+name="METHODS"
+>METHODS</a></h2>
+
+<h3><a class='u'
+name="new"
+>new</a></h3>
+
+<pre>my $filter = LucyX::Search::Filter-&#62;new(
+    query =&#62; $query;
+);</pre>
+
+<p>Constructor.
+Takes one hash-style parameter,
+<code>query</code>,
+which must be an object belonging to a subclass of <a 
href="../../Lucy/Search/Query.html" class="podlinkpod"
+>Lucy::Search::Query</a>.</p>
+
+<h2><a class='u'
+name="BUGS"
+>BUGS</a></h2>
+
+<p>Filters do not cache when used in a search cluster with LucyX::Remote&#39;s 
SearchServer and SearchClient.</p>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Search/MockMatcher.mdtext Mon Apr  
4 09:22:30 2016
@@ -0,0 +1,39 @@
+Title: LucyX::Search::MockMatcher – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Search::MockMatcher - Matcher with arbitrary docs and scores.</p>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>Used for testing combining <a href="../../Lucy/Search/Matcher.html" 
class="podlinkpod"
+>Matchers</a> such as ANDMatcher,
+MockMatcher allows arbitrary match criteria to be supplied,
+obviating the need for clever index construction to cover corner cases.</p>
+
+<p>MockMatcher is a testing and demonstration class; it is unsupported.</p>
+
+<h2><a class='u'
+name="CONSTRUCTORS"
+>CONSTRUCTORS</a></h2>
+
+<h3><a class='u'
+name="new(_[labeled_params]_)"
+>new( [<i>labeled params</i>] )</a></h3>
+
+<ul>
+<li><b>doc_ids</b> - A sorted array of <a href="../../Lucy/Docs/DocIDs.html" 
class="podlinkpod"
+>doc_ids</a>.</li>
+
+<li><b>scores</b> - An array of scores,
+one for each doc_id.</li>
+</ul>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/LucyX/Search/ProximityQuery.mdtext Mon 
Apr  4 09:22:30 2016
@@ -0,0 +1,110 @@
+Title: LucyX::Search::ProximityQuery – Apache Lucy Documentation
+
+<div>
+<a name='___top' class='dummyTopAnchor' ></a>
+
+<h2><a class='u'
+name="NAME"
+>NAME</a></h2>
+
+<p>LucyX::Search::ProximityQuery - Query matching an ordered list of terms.</p>
+
+<h2><a class='u'
+name="SYNOPSIS"
+>SYNOPSIS</a></h2>
+
+<pre>my $proximity_query = LucyX::Search::ProximityQuery-&#62;new( 
+    field  =&#62; &#39;content&#39;,
+    terms  =&#62; [qw( the who )],
+    within =&#62; 10,    # match within 10 positions
+);
+my $hits = $searcher-&#62;hits( query =&#62; $proximity_query );</pre>
+
+<h2><a class='u'
+name="DESCRIPTION"
+>DESCRIPTION</a></h2>
+
+<p>ProximityQuery is a subclass of <a href="../../Lucy/Search/Query.html" 
class="podlinkpod"
+>Query</a> for matching against an ordered sequence of terms.</p>
+
+<h2><a class='u'
+name="CONSTRUCTORS"
+>CONSTRUCTORS</a></h2>
+
+<h3><a class='u'
+name="new"
+>new</a></h3>
+
+<pre>my $proximity_query = LucyX::Search::ProximityQuery-&#62;new(
+    field  =&#62; $field   # required
+    terms  =&#62; $terms   # required
+    within =&#62; $within  # required
+);</pre>
+
+<p>Create a new ProximityQuery.</p>
+
+<ul>
+<li><b>field</b> - The field that the phrase must occur in.</li>
+
+<li><b>terms</b> - The ordered array of terms that must match.</li>
+</ul>
+
+<h2><a class='u'
+name="METHODS"
+>METHODS</a></h2>
+
+<h3><a class='u'
+name="get_field"
+>get_field</a></h3>
+
+<pre>my $string = $proximity_query-&#62;get_field();</pre>
+
+<p>Accessor for object&#8217;s field attribute.</p>
+
+<h3><a class='u'
+name="get_terms"
+>get_terms</a></h3>
+
+<pre>my $arrayref = $proximity_query-&#62;get_terms();</pre>
+
+<p>Accessor for object&#8217;s array of terms.</p>
+
+<h3><a class='u'
+name="get_within"
+>get_within</a></h3>
+
+<pre>my $int = $proximity_query-&#62;get_within();</pre>
+
+<p>Accessor for object&#8217;s within attribute.</p>
+
+<h3><a class='u'
+name="make_compiler"
+>make_compiler</a></h3>
+
+<pre>my $compiler = $proximity_query-&#62;make_compiler(
+    searcher    =&#62; $searcher     # required
+    boost       =&#62; $boost        # required
+    subordinate =&#62; $subordinate  # default: false
+);</pre>
+
+<p>Abstract factory method returning a Compiler derived from this Query.</p>
+
+<ul>
+<li><b>searcher</b> - A Searcher.</li>
+
+<li><b>boost</b> - A scoring multiplier.</li>
+
+<li><b>subordinate</b> - Indicates whether the Query is a subquery (as opposed 
to a top-level query).
+If false,
+the implementation must invoke <a 
href="../../Lucy/Search/Compiler.html#normalize" class="podlinkpod"
+>normalize()</a> on the newly minted Compiler object before returning it.</li>
+</ul>
+
+<h2><a class='u'
+name="INHERITANCE"
+>INHERITANCE</a></h2>
+
+<p>LucyX::Search::ProximityQuery isa <a href="../../Lucy/Search/Query.html" 
class="podlinkpod"
+>Lucy::Search::Query</a> isa Clownfish::Obj.</p>
+
+</div>

Added: lucy/site/trunk/content/docs/perl/clownfish-index.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/clownfish-index.mdtext?rev=1737642&view=auto
==============================================================================
--- lucy/site/trunk/content/docs/perl/clownfish-index.mdtext (added)
+++ lucy/site/trunk/content/docs/perl/clownfish-index.mdtext Mon Apr  4 
09:22:30 2016
@@ -0,0 +1,22 @@
+Title: Perl API documentation for Apache Clownfish 0.5.0
+
+## Perl API documentation for Apache Clownfish 0.5.0
+
+- [Clownfish](Clownfish.html) – Apache Clownfish symbiotic object system
+- [Clownfish::Blob](Clownfish/Blob.html) – Immutable buffer holding 
arbitrary bytes.
+- [Clownfish::Boolean](Clownfish/Boolean.html) – Boolean type.
+- [Clownfish::ByteBuf](Clownfish/ByteBuf.html) – Growable buffer holding 
arbitrary bytes.
+- [Clownfish::CharBuf](Clownfish/CharBuf.html) – Growable buffer holding 
Unicode characters.
+- [Clownfish::Class](Clownfish/Class.html) – Class.
+- [Clownfish::Docs::BuildingProjects](Clownfish/Docs/BuildingProjects.html) 
– Building Apache Clownfish projects in C environments
+- [Clownfish::Docs::ClassIntro](Clownfish/Docs/ClassIntro.html) – Working 
with Apache Clownfish classes in C
+- [Clownfish::Docs::WritingClasses](Clownfish/Docs/WritingClasses.html) – 
Writing Apache Clownfish classes
+- [Clownfish::Err](Clownfish/Err.html) – Exception.
+- [Clownfish::Float](Clownfish/Float.html) – Immutable double precision 
floating point number.
+- [Clownfish::Hash](Clownfish/Hash.html) – Hashtable.
+- [Clownfish::HashIterator](Clownfish/HashIterator.html) – Hashtable 
Iterator.
+- [Clownfish::Integer](Clownfish/Integer.html) – Immutable 64-bit signed 
integer.
+- [Clownfish::Obj](Clownfish/Obj.html) – Base class for all objects.
+- [Clownfish::String](Clownfish/String.html) – Immutable string holding 
Unicode characters.
+- [Clownfish::StringIterator](Clownfish/StringIterator.html) – Iterate 
Unicode code points in a String.
+- [Clownfish::Vector](Clownfish/Vector.html) – Variable-sized array.

Modified: lucy/site/trunk/content/docs/perl/index.mdtext
URL: 
http://svn.apache.org/viewvc/lucy/site/trunk/content/docs/perl/index.mdtext?rev=1737642&r1=1737641&r2=1737642&view=diff
==============================================================================
--- lucy/site/trunk/content/docs/perl/index.mdtext (original)
+++ lucy/site/trunk/content/docs/perl/index.mdtext Mon Apr  4 09:22:30 2016
@@ -1,100 +1,103 @@
-#### Perl API documentation for Apache Lucy 0.4.2
+Title: Perl API documentation for Apache Lucy 0.5.0
 
- - [Lucy](Lucy.html) - Apache Lucy search engine library.
- - [Lucy::Analysis::Analyzer](Lucy/Analysis/Analyzer.html) - 
Tokenize/modify/filter text.
- - [Lucy::Analysis::CaseFolder](Lucy/Analysis/CaseFolder.html) - Normalize 
case, facilitating case-insensitive search.
- - [Lucy::Analysis::EasyAnalyzer](Lucy/Analysis/EasyAnalyzer.html) - A simple 
analyzer chain.
- - [Lucy::Analysis::Normalizer](Lucy/Analysis/Normalizer.html) - Unicode 
normalization, case folding and accent stripping.
- - [Lucy::Analysis::PolyAnalyzer](Lucy/Analysis/PolyAnalyzer.html) - Multiple 
Analyzers in series.
- - [Lucy::Analysis::RegexTokenizer](Lucy/Analysis/RegexTokenizer.html) - Split 
a string into tokens.
- - [Lucy::Analysis::SnowballStemmer](Lucy/Analysis/SnowballStemmer.html) - 
Reduce related words to a shared root.
- - [Lucy::Analysis::SnowballStopFilter](Lucy/Analysis/SnowballStopFilter.html) 
- Suppress a "stoplist" of common words.
- - [Lucy::Analysis::StandardTokenizer](Lucy/Analysis/StandardTokenizer.html) - 
Split a string into tokens.
- - [Lucy::Docs::Cookbook](Lucy/Docs/Cookbook.html) - Apache Lucy recipes.
- - [Lucy::Docs::Cookbook::CustomQuery](Lucy/Docs/Cookbook/CustomQuery.html) - 
Sample subclass of Query.
- - 
[Lucy::Docs::Cookbook::CustomQueryParser](Lucy/Docs/Cookbook/CustomQueryParser.html)
 - Sample subclass of QueryParser.
- - [Lucy::Docs::Cookbook::FastUpdates](Lucy/Docs/Cookbook/FastUpdates.html) - 
Near real-time index updates.
- - [Lucy::Docs::DevGuide](Lucy/Docs/DevGuide.html) - Quick-start guide to 
hacking on Apache Lucy.
- - [Lucy::Docs::DocIDs](Lucy/Docs/DocIDs.html) - Characteristics of Apache 
Lucy document ids.
- - [Lucy::Docs::FileFormat](Lucy/Docs/FileFormat.html) - Overview of index 
file format.
- - [Lucy::Docs::FileLocking](Lucy/Docs/FileLocking.html) - Manage indexes on 
shared volumes.
- - [Lucy::Docs::IRTheory](Lucy/Docs/IRTheory.html) - Crash course in 
information retrieval.
- - [Lucy::Docs::Tutorial](Lucy/Docs/Tutorial.html) - Step-by-step introduction 
to Apache Lucy.
- - [Lucy::Docs::Tutorial::Analysis](Lucy/Docs/Tutorial/Analysis.html) - How to 
choose and use Analyzers.
- - [Lucy::Docs::Tutorial::BeyondSimple](Lucy/Docs/Tutorial/BeyondSimple.html) 
- A more flexible app structure.
- - [Lucy::Docs::Tutorial::FieldType](Lucy/Docs/Tutorial/FieldType.html) - 
Specify per-field properties and behaviors.
- - [Lucy::Docs::Tutorial::Highlighter](Lucy/Docs/Tutorial/Highlighter.html) - 
Augment search results with highlighted excerpts.
- - [Lucy::Docs::Tutorial::QueryObjects](Lucy/Docs/Tutorial/QueryObjects.html) 
- Use Query objects instead of query strings.
- - [Lucy::Docs::Tutorial::Simple](Lucy/Docs/Tutorial/Simple.html) - Bare-bones 
search app.
- - [Lucy::Document::Doc](Lucy/Document/Doc.html) - A document.
- - [Lucy::Document::HitDoc](Lucy/Document/HitDoc.html) - A document read from 
an index.
- - [Lucy::Highlight::Highlighter](Lucy/Highlight/Highlighter.html) - Create 
and highlight excerpts.
- - [Lucy::Index::BackgroundMerger](Lucy/Index/BackgroundMerger.html) - 
Consolidate index segments in the background.
- - [Lucy::Index::DataReader](Lucy/Index/DataReader.html) - Abstract base class 
for reading index data.
- - [Lucy::Index::DataWriter](Lucy/Index/DataWriter.html) - Write data to an 
index.
- - [Lucy::Index::DeletionsWriter](Lucy/Index/DeletionsWriter.html) - Abstract 
base class for marking documents as deleted.
- - [Lucy::Index::DocReader](Lucy/Index/DocReader.html) - Retrieve stored 
documents.
- - [Lucy::Index::IndexManager](Lucy/Index/IndexManager.html) - Policies 
governing index updating, locking, and file deletion.
- - [Lucy::Index::IndexReader](Lucy/Index/IndexReader.html) - Read from an 
inverted index.
- - [Lucy::Index::Indexer](Lucy/Index/Indexer.html) - Build inverted indexes.
- - [Lucy::Index::Lexicon](Lucy/Index/Lexicon.html) - Iterator for a field's 
terms.
- - [Lucy::Index::LexiconReader](Lucy/Index/LexiconReader.html) - Read Lexicon 
data.
- - [Lucy::Index::PolyReader](Lucy/Index/PolyReader.html) - Multi-segment 
implementation of IndexReader.
- - [Lucy::Index::PostingList](Lucy/Index/PostingList.html) - Term-Document 
pairings.
- - [Lucy::Index::PostingListReader](Lucy/Index/PostingListReader.html) - Read 
postings data.
- - [Lucy::Index::SegReader](Lucy/Index/SegReader.html) - Single-segment 
IndexReader.
- - [Lucy::Index::SegWriter](Lucy/Index/SegWriter.html) - Write one segment of 
an index.
- - [Lucy::Index::Segment](Lucy/Index/Segment.html) - Warehouse for information 
about one segment of an inverted index.
- - [Lucy::Index::Similarity](Lucy/Index/Similarity.html) - Judge how well a 
document matches a query.
- - [Lucy::Index::Snapshot](Lucy/Index/Snapshot.html) - Point-in-time index 
file list.
- - [Lucy::Object::BitVector](Lucy/Object/BitVector.html) - An array of bits.
- - [Lucy::Object::Obj](Lucy/Object/Obj.html) - Moved.
- - [Lucy::Plan::Architecture](Lucy/Plan/Architecture.html) - Configure major 
components of an index.
- - [Lucy::Plan::BlobType](Lucy/Plan/BlobType.html) - Default behaviors for 
binary fields.
- - [Lucy::Plan::FieldType](Lucy/Plan/FieldType.html) - Define a field's 
behavior.
- - [Lucy::Plan::FullTextType](Lucy/Plan/FullTextType.html) - Full-text search 
field type.
- - [Lucy::Plan::Schema](Lucy/Plan/Schema.html) - User-created specification 
for an inverted index.
- - [Lucy::Plan::StringType](Lucy/Plan/StringType.html) - Non-tokenized text 
type.
- - [Lucy::Search::ANDQuery](Lucy/Search/ANDQuery.html) - Intersect multiple 
result sets.
- - [Lucy::Search::Collector](Lucy/Search/Collector.html) - Process hits.
- - 
[Lucy::Search::Collector::BitCollector](Lucy/Search/Collector/BitCollector.html)
 - Collector which records doc nums in a BitVector.
- - [Lucy::Search::Compiler](Lucy/Search/Compiler.html) - Query-to-Matcher 
compiler.
- - [Lucy::Search::Hits](Lucy/Search/Hits.html) - Access search results.
- - [Lucy::Search::IndexSearcher](Lucy/Search/IndexSearcher.html) - Execute 
searches against a single index.
- - [Lucy::Search::LeafQuery](Lucy/Search/LeafQuery.html) - Leaf node in a tree 
created by QueryParser.
- - [Lucy::Search::MatchAllQuery](Lucy/Search/MatchAllQuery.html) - Query which 
matches all documents.
- - [Lucy::Search::Matcher](Lucy/Search/Matcher.html) - Match a set of document 
ids.
- - [Lucy::Search::NOTQuery](Lucy/Search/NOTQuery.html) - Invert the result set 
of another Query.
- - [Lucy::Search::NoMatchQuery](Lucy/Search/NoMatchQuery.html) - Query which 
matches no documents.
- - [Lucy::Search::ORQuery](Lucy/Search/ORQuery.html) - Union multiple result 
sets.
- - [Lucy::Search::PhraseQuery](Lucy/Search/PhraseQuery.html) - Query matching 
an ordered list of terms.
- - [Lucy::Search::PolyQuery](Lucy/Search/PolyQuery.html) - Base class for 
composite Query objects.
- - [Lucy::Search::PolySearcher](Lucy/Search/PolySearcher.html) - Aggregate 
results from multiple Searchers.
- - [Lucy::Search::Query](Lucy/Search/Query.html) - A specification for a 
search query.
- - [Lucy::Search::QueryParser](Lucy/Search/QueryParser.html) - Transform a 
string into a Query object.
- - [Lucy::Search::RangeQuery](Lucy/Search/RangeQuery.html) - Match a range of 
values.
- - 
[Lucy::Search::RequiredOptionalQuery](Lucy/Search/RequiredOptionalQuery.html) - 
Join results for two Queries, one required, one optional.
- - [Lucy::Search::Searcher](Lucy/Search/Searcher.html) - Base class for 
searching collections of documents.
- - [Lucy::Search::SortRule](Lucy/Search/SortRule.html) - Element of a SortSpec.
- - [Lucy::Search::SortSpec](Lucy/Search/SortSpec.html) - Specify a custom sort 
order for search results.
- - [Lucy::Search::Span](Lucy/Search/Span.html) - An offset, a length, and a 
weight.
- - [Lucy::Search::TermQuery](Lucy/Search/TermQuery.html) - Query which matches 
individual terms.
- - [Lucy::Simple](Lucy/Simple.html) - Basic search engine.
- - [Lucy::Store::FSFolder](Lucy/Store/FSFolder.html) - File System 
implementation of Folder.
- - [Lucy::Store::Folder](Lucy/Store/Folder.html) - Abstract class representing 
a directory.
- - [Lucy::Store::Lock](Lucy/Store/Lock.html) - Abstract class representing an 
interprocess mutex lock.
- - [Lucy::Store::LockErr](Lucy/Store/LockErr.html) - Lock exception.
- - [Lucy::Store::LockFactory](Lucy/Store/LockFactory.html) - Create Locks.
- - [Lucy::Store::RAMFolder](Lucy/Store/RAMFolder.html) - In-memory Folder 
implementation.
- - [LucyX::Index::ByteBufDocReader](LucyX/Index/ByteBufDocReader.html) - Read 
a Doc as a fixed-width byte array.
- - [LucyX::Index::ByteBufDocWriter](LucyX/Index/ByteBufDocWriter.html) - Write 
a Doc as a fixed-width byte array.
- - [LucyX::Index::LongFieldSim](LucyX/Index/LongFieldSim.html) - Similarity 
optimized for long fields.
- - [LucyX::Index::ZlibDocReader](LucyX/Index/ZlibDocReader.html) - Compressed 
doc storage.
- - [LucyX::Index::ZlibDocWriter](LucyX/Index/ZlibDocWriter.html) - Compressed 
doc storage.
- - [LucyX::Remote::ClusterSearcher](LucyX/Remote/ClusterSearcher.html) - 
Search multiple remote indexes.
- - [LucyX::Remote::SearchClient](LucyX/Remote/SearchClient.html) - Connect to 
a remote SearchServer.
- - [LucyX::Remote::SearchServer](LucyX/Remote/SearchServer.html) - Make a 
Searcher remotely accessible.
- - [LucyX::Search::Filter](LucyX/Search/Filter.html) - Build a caching filter 
based on results of a Query.
- - [LucyX::Search::MockMatcher](LucyX/Search/MockMatcher.html) - Matcher with 
arbitrary docs and scores.
- - [LucyX::Search::ProximityQuery](LucyX/Search/ProximityQuery.html) - Query 
matching an ordered list of terms.
+## Perl API documentation for Apache Lucy 0.5.0
 
+- [Lucy](Lucy.html) – Apache Lucy search engine library.
+- [Lucy::Analysis::Analyzer](Lucy/Analysis/Analyzer.html) – 
Tokenize/modify/filter text.
+- [Lucy::Analysis::CaseFolder](Lucy/Analysis/CaseFolder.html) – Normalize 
case, facilitating case-insensitive search.
+- [Lucy::Analysis::EasyAnalyzer](Lucy/Analysis/EasyAnalyzer.html) – A simple 
analyzer chain.
+- [Lucy::Analysis::Inversion](Lucy/Analysis/Inversion.html) – A collection 
of Tokens.
+- [Lucy::Analysis::Normalizer](Lucy/Analysis/Normalizer.html) – Unicode 
normalization, case folding and accent stripping.
+- [Lucy::Analysis::PolyAnalyzer](Lucy/Analysis/PolyAnalyzer.html) – Multiple 
Analyzers in series.
+- [Lucy::Analysis::RegexTokenizer](Lucy/Analysis/RegexTokenizer.html) – 
Split a string into tokens.
+- [Lucy::Analysis::SnowballStemmer](Lucy/Analysis/SnowballStemmer.html) – 
Reduce related words to a shared root.
+- [Lucy::Analysis::SnowballStopFilter](Lucy/Analysis/SnowballStopFilter.html) 
– Suppress a “stoplist” of common words.
+- [Lucy::Analysis::StandardTokenizer](Lucy/Analysis/StandardTokenizer.html) 
– Split a string into tokens.
+- [Lucy::Analysis::Token](Lucy/Analysis/Token.html) – Unit of text.
+- [Lucy::Docs::Cookbook](Lucy/Docs/Cookbook.html) – Apache Lucy recipes
+- [Lucy::Docs::Cookbook::CustomQuery](Lucy/Docs/Cookbook/CustomQuery.html) – 
Sample subclass of Query
+- 
[Lucy::Docs::Cookbook::CustomQueryParser](Lucy/Docs/Cookbook/CustomQueryParser.html)
 – Sample subclass of QueryParser.
+- [Lucy::Docs::Cookbook::FastUpdates](Lucy/Docs/Cookbook/FastUpdates.html) – 
Near real-time index updates
+- [Lucy::Docs::DevGuide](Lucy/Docs/DevGuide.html) – Quick-start guide to 
hacking on Apache Lucy.
+- [Lucy::Docs::DocIDs](Lucy/Docs/DocIDs.html) – Characteristics of Apache 
Lucy document ids.
+- [Lucy::Docs::FileFormat](Lucy/Docs/FileFormat.html) – Overview of index 
file format
+- [Lucy::Docs::FileLocking](Lucy/Docs/FileLocking.html) – Manage indexes on 
shared volumes.
+- [Lucy::Docs::IRTheory](Lucy/Docs/IRTheory.html) – Crash course in 
information retrieval
+- [Lucy::Docs::Tutorial](Lucy/Docs/Tutorial.html) – Step-by-step 
introduction to Apache Lucy.
+- 
[Lucy::Docs::Tutorial::AnalysisTutorial](Lucy/Docs/Tutorial/AnalysisTutorial.html)
 – How to choose and use Analyzers.
+- 
[Lucy::Docs::Tutorial::BeyondSimpleTutorial](Lucy/Docs/Tutorial/BeyondSimpleTutorial.html)
 – A more flexible app structure.
+- 
[Lucy::Docs::Tutorial::FieldTypeTutorial](Lucy/Docs/Tutorial/FieldTypeTutorial.html)
 – Specify per-field properties and behaviors.
+- 
[Lucy::Docs::Tutorial::HighlighterTutorial](Lucy/Docs/Tutorial/HighlighterTutorial.html)
 – Augment search results with highlighted excerpts.
+- 
[Lucy::Docs::Tutorial::QueryObjectsTutorial](Lucy/Docs/Tutorial/QueryObjectsTutorial.html)
 – Use Query objects instead of query strings.
+- 
[Lucy::Docs::Tutorial::SimpleTutorial](Lucy/Docs/Tutorial/SimpleTutorial.html) 
– Bare-bones search app.
+- [Lucy::Document::Doc](Lucy/Document/Doc.html) – A document.
+- [Lucy::Document::HitDoc](Lucy/Document/HitDoc.html) – A document read from 
an index.
+- [Lucy::Highlight::Highlighter](Lucy/Highlight/Highlighter.html) – Create 
and highlight excerpts.
+- [Lucy::Index::BackgroundMerger](Lucy/Index/BackgroundMerger.html) – 
Consolidate index segments in the background.
+- [Lucy::Index::DataReader](Lucy/Index/DataReader.html) – Abstract base 
class for reading index data.
+- [Lucy::Index::DataWriter](Lucy/Index/DataWriter.html) – Write data to an 
index.
+- [Lucy::Index::DeletionsWriter](Lucy/Index/DeletionsWriter.html) – Abstract 
base class for marking documents as deleted.
+- [Lucy::Index::DocReader](Lucy/Index/DocReader.html) – Retrieve stored 
documents.
+- [Lucy::Index::IndexManager](Lucy/Index/IndexManager.html) – Policies 
governing index updating, locking, and file deletion.
+- [Lucy::Index::IndexReader](Lucy/Index/IndexReader.html) – Read from an 
inverted index.
+- [Lucy::Index::Indexer](Lucy/Index/Indexer.html) – Build inverted indexes.
+- [Lucy::Index::Lexicon](Lucy/Index/Lexicon.html) – Iterator for a field’s 
terms.
+- [Lucy::Index::LexiconReader](Lucy/Index/LexiconReader.html) – Read Lexicon 
data.
+- [Lucy::Index::PolyReader](Lucy/Index/PolyReader.html) – Multi-segment 
implementation of IndexReader.
+- [Lucy::Index::PostingList](Lucy/Index/PostingList.html) – Term-Document 
pairings.
+- [Lucy::Index::PostingListReader](Lucy/Index/PostingListReader.html) – Read 
postings data.
+- [Lucy::Index::SegReader](Lucy/Index/SegReader.html) – Single-segment 
IndexReader.
+- [Lucy::Index::SegWriter](Lucy/Index/SegWriter.html) – Write one segment of 
an index.
+- [Lucy::Index::Segment](Lucy/Index/Segment.html) – Warehouse for 
information about one segment of an inverted index.
+- [Lucy::Index::Similarity](Lucy/Index/Similarity.html) – Judge how well a 
document matches a query.
+- [Lucy::Index::Snapshot](Lucy/Index/Snapshot.html) – Point-in-time index 
file list.
+- [Lucy::Object::BitVector](Lucy/Object/BitVector.html) – An array of bits.
+- [Lucy::Object::Obj](Lucy/Object/Obj.html) – Moved.
+- [Lucy::Plan::Architecture](Lucy/Plan/Architecture.html) – Configure major 
components of an index.
+- [Lucy::Plan::BlobType](Lucy/Plan/BlobType.html) – Default behaviors for 
binary fields.
+- [Lucy::Plan::FieldType](Lucy/Plan/FieldType.html) – Define a field’s 
behavior.
+- [Lucy::Plan::FullTextType](Lucy/Plan/FullTextType.html) – Full-text search 
field type.
+- [Lucy::Plan::Schema](Lucy/Plan/Schema.html) – User-created specification 
for an inverted index.
+- [Lucy::Plan::StringType](Lucy/Plan/StringType.html) – Non-tokenized text 
type.
+- [Lucy::Search::ANDQuery](Lucy/Search/ANDQuery.html) – Intersect multiple 
result sets.
+- [Lucy::Search::Collector](Lucy/Search/Collector.html) – Process hits.
+- 
[Lucy::Search::Collector::BitCollector](Lucy/Search/Collector/BitCollector.html)
 – Collector which records doc nums in a BitVector.
+- [Lucy::Search::Compiler](Lucy/Search/Compiler.html) – Query-to-Matcher 
compiler.
+- [Lucy::Search::Hits](Lucy/Search/Hits.html) – Access search results.
+- [Lucy::Search::IndexSearcher](Lucy/Search/IndexSearcher.html) – Execute 
searches against a single index.
+- [Lucy::Search::LeafQuery](Lucy/Search/LeafQuery.html) – Leaf node in a 
tree created by QueryParser.
+- [Lucy::Search::MatchAllQuery](Lucy/Search/MatchAllQuery.html) – Query 
which matches all documents.
+- [Lucy::Search::Matcher](Lucy/Search/Matcher.html) – Match a set of 
document ids.
+- [Lucy::Search::NOTQuery](Lucy/Search/NOTQuery.html) – Invert the result 
set of another Query.
+- [Lucy::Search::NoMatchQuery](Lucy/Search/NoMatchQuery.html) – Query which 
matches no documents.
+- [Lucy::Search::ORQuery](Lucy/Search/ORQuery.html) – Union multiple result 
sets.
+- [Lucy::Search::PhraseQuery](Lucy/Search/PhraseQuery.html) – Query matching 
an ordered list of terms.
+- [Lucy::Search::PolyQuery](Lucy/Search/PolyQuery.html) – Base class for 
composite Query objects.
+- [Lucy::Search::PolySearcher](Lucy/Search/PolySearcher.html) – Aggregate 
results from multiple Searchers.
+- [Lucy::Search::Query](Lucy/Search/Query.html) – A specification for a 
search query.
+- [Lucy::Search::QueryParser](Lucy/Search/QueryParser.html) – Transform a 
string into a Query object.
+- [Lucy::Search::RangeQuery](Lucy/Search/RangeQuery.html) – Match a range of 
values.
+- 
[Lucy::Search::RequiredOptionalQuery](Lucy/Search/RequiredOptionalQuery.html) 
– Join results for two Queries, one required, one optional.
+- [Lucy::Search::Searcher](Lucy/Search/Searcher.html) – Base class for 
searching collections of documents.
+- [Lucy::Search::SortRule](Lucy/Search/SortRule.html) – Element of a 
SortSpec.
+- [Lucy::Search::SortSpec](Lucy/Search/SortSpec.html) – Specify a custom 
sort order for search results.
+- [Lucy::Search::Span](Lucy/Search/Span.html) – An offset, a length, and a 
weight.
+- [Lucy::Search::TermQuery](Lucy/Search/TermQuery.html) – Query which 
matches individual terms.
+- [Lucy::Simple](Lucy/Simple.html) – Basic search engine.
+- [Lucy::Store::FSFolder](Lucy/Store/FSFolder.html) – File System 
implementation of Folder.
+- [Lucy::Store::Folder](Lucy/Store/Folder.html) – Abstract class 
representing a directory.
+- [Lucy::Store::Lock](Lucy/Store/Lock.html) – Abstract class representing an 
interprocess mutex lock.
+- [Lucy::Store::LockErr](Lucy/Store/LockErr.html) – Lock exception.
+- [Lucy::Store::LockFactory](Lucy/Store/LockFactory.html) – Create Locks.
+- [Lucy::Store::RAMFolder](Lucy/Store/RAMFolder.html) – In-memory Folder 
implementation.
+- [LucyX::Index::ByteBufDocReader](LucyX/Index/ByteBufDocReader.html) – Read 
a Doc as a fixed-width byte array.
+- [LucyX::Index::ByteBufDocWriter](LucyX/Index/ByteBufDocWriter.html) – 
Write a Doc as a fixed-width byte array.
+- [LucyX::Index::LongFieldSim](LucyX/Index/LongFieldSim.html) – Similarity 
optimized for long fields.
+- [LucyX::Index::ZlibDocReader](LucyX/Index/ZlibDocReader.html) – Compressed 
doc storage.
+- [LucyX::Index::ZlibDocWriter](LucyX/Index/ZlibDocWriter.html) – Compressed 
doc storage.
+- [LucyX::Remote::ClusterSearcher](LucyX/Remote/ClusterSearcher.html) – 
Search multiple remote indexes.
+- [LucyX::Remote::SearchClient](LucyX/Remote/SearchClient.html) – Connect to 
a remote SearchServer.
+- [LucyX::Remote::SearchServer](LucyX/Remote/SearchServer.html) – Make a 
Searcher remotely accessible.
+- [LucyX::Search::Filter](LucyX/Search/Filter.html) – Build a caching filter 
based on results of a Query.
+- [LucyX::Search::MockMatcher](LucyX/Search/MockMatcher.html) – Matcher with 
arbitrary docs and scores.
+- [LucyX::Search::ProximityQuery](LucyX/Search/ProximityQuery.html) – Query 
matching an ordered list of terms.



Reply via email to