You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2010/11/03 23:39:41 UTC

[lucy-commits] svn commit: r1030743 - in /incubator/lucy/trunk: devel/benchmarks/README.txt devel/benchmarks/indexers/BenchmarkingIndexer.pm perl/MANIFEST.SKIP perl/t/018-host.t perl/t/021-vtable.t perl/t/025-debug.t

Author: marvin
Date: Wed Nov  3 22:39:41 2010
New Revision: 1030743

URL: http://svn.apache.org/viewvc?rev=1030743&view=rev
Log:
Migrate a few scattered KinoSearch references to Lucy.

Modified:
    incubator/lucy/trunk/devel/benchmarks/README.txt
    incubator/lucy/trunk/devel/benchmarks/indexers/BenchmarkingIndexer.pm
    incubator/lucy/trunk/perl/MANIFEST.SKIP
    incubator/lucy/trunk/perl/t/018-host.t
    incubator/lucy/trunk/perl/t/021-vtable.t
    incubator/lucy/trunk/perl/t/025-debug.t

Modified: incubator/lucy/trunk/devel/benchmarks/README.txt
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/devel/benchmarks/README.txt?rev=1030743&r1=1030742&r2=1030743&view=diff
==============================================================================
--- incubator/lucy/trunk/devel/benchmarks/README.txt (original)
+++ incubator/lucy/trunk/devel/benchmarks/README.txt Wed Nov  3 22:39:41 2010
@@ -24,7 +24,7 @@ optional command line arguments: 
   * The increment, or number of docs to add during each index writer instance.
   * Whether or not the main text should be stored and highlightable.
 
-    $ perl -Mblib indexers/kinosearch_indexer.plx \
+    $ perl -Mblib indexers/lucy_indexer.plx \
     > --docs=1000 --reps=6 --increment=10 --store=1
 
     $ java -server -Xmx500M -XX:CompileThreshold=100 LuceneIndexer \

Modified: incubator/lucy/trunk/devel/benchmarks/indexers/BenchmarkingIndexer.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/devel/benchmarks/indexers/BenchmarkingIndexer.pm?rev=1030743&r1=1030742&r2=1030743&view=diff
==============================================================================
--- incubator/lucy/trunk/devel/benchmarks/indexers/BenchmarkingIndexer.pm (original)
+++ incubator/lucy/trunk/devel/benchmarks/indexers/BenchmarkingIndexer.pm Wed Nov  3 22:39:41 2010
@@ -159,7 +159,7 @@ sub new {
     );
     $schema->spec_field( name => 'body', type => $body_type );
 
-    $self->{index_dir} = 'kinosearch_index';
+    $self->{index_dir} = 'lucy_index';
     $self->{engine}    = 'KinoSearch';
     $self->{version}   = $KinoSearch::VERSION;
 

Modified: incubator/lucy/trunk/perl/MANIFEST.SKIP
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/MANIFEST.SKIP?rev=1030743&r1=1030742&r2=1030743&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/MANIFEST.SKIP (original)
+++ incubator/lucy/trunk/perl/MANIFEST.SKIP Wed Nov  3 22:39:41 2010
@@ -53,7 +53,7 @@ pm_to_blib
 test_index/
 
 # benchmarking corpora
-kinosearch_index\b
+lucy_index\b
 lucene_index\b
 extracted_corpus\b
 

Modified: incubator/lucy/trunk/perl/t/018-host.t
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/t/018-host.t?rev=1030743&r1=1030742&r2=1030743&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/t/018-host.t (original)
+++ incubator/lucy/trunk/perl/t/018-host.t Wed Nov  3 22:39:41 2010
@@ -38,7 +38,7 @@ my $kobj = to_clownfish( \%complex_data_
 isa_ok( $kobj, 'KinoSearch::Object::Obj' );
 my $transformed = to_perl($kobj);
 is_deeply( $transformed, \%complex_data_structure,
-    "transform from Perl to Kino data structures and back" );
+    "transform from Perl to Clownfish data structures and back" );
 
 my $bread_and_butter = KinoSearch::Object::Hash->new;
 $bread_and_butter->store( 'bread',

Modified: incubator/lucy/trunk/perl/t/021-vtable.t
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/t/021-vtable.t?rev=1030743&r1=1030742&r2=1030743&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/t/021-vtable.t (original)
+++ incubator/lucy/trunk/perl/t/021-vtable.t Wed Nov  3 22:39:41 2010
@@ -70,7 +70,7 @@ my $storage = KinoSearch::Object::Hash->
     isa_ok( $subclassed_hash, "MyHash", "Perl isa reports correct subclass" );
 
     # Store the subclassed object.  At the end of this block, the Perl object
-    # will go out of scope and DESTROY will be called, but the kino object
+    # will go out of scope and DESTROY will be called, but the Clownfish object
     # will persist.
     $storage->store( "test", $subclassed_hash );
 }

Modified: incubator/lucy/trunk/perl/t/025-debug.t
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/t/025-debug.t?rev=1030743&r1=1030742&r2=1030743&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/t/025-debug.t (original)
+++ incubator/lucy/trunk/perl/t/025-debug.t Wed Nov  3 22:39:41 2010
@@ -62,7 +62,7 @@ SKIP: {
         = capture_debug( 'XS_KinoSearch__Util__Debug_DEBUG', "Strychnine" );
     like( $stderr_out, qr/Strychnine/, "DEBUG - function name" );
 
-    $stderr_out = capture_debug( 'KinoS*', 'Raid' );
+    $stderr_out = capture_debug( 'Lucy*', 'Raid' );
     like( $stderr_out, qr/Raid/, "DEBUG - wildcard" );
 
     my $pid = fork();