File: benchmark

package info (click to toggle)
libplucene-perl 1.25-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,320 kB
  • sloc: perl: 4,169; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 583 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/perl

use strict;
use warnings;

use Plucene;
use Plucene::TestCase;

use Benchmark 'cmpthese';
use File::Slurp;

chomp(my @words = read_file('/usr/share/dict/enable'));

my $sentence = sub {
	my $words = shift;
	return join " ", map $words[ rand @words ], 1 .. $words;
};

sub add_sentences {
	my $length = shift;
	new_index { add_document(content => $sentence->($length)) for 1 .. 100 };
}

print Plucene->VERSION, "\n";

cmpthese(
	10 => {
		'short'  => sub { add_sentences(1) },
		'medium' => sub { add_sentences(10) },
		'long'   => sub { add_sentences(100) },
	});