Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devel/benchmarks/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Each of the indexing apps takes four 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/lucy_indexer.plx \
$ perl -Mblib=../../perl indexers/lucy_indexer.plx \
> --docs=1000 --reps=6 --increment=10 --store=1

$ java -server -Xmx500M -XX:CompileThreshold=100 LuceneIndexer \
Expand Down
2 changes: 1 addition & 1 deletion devel/benchmarks/indexers/lucy_indexer.plx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ else {
for (@INC) {
next unless /\bblib\b/;
# Propagate -Mblib to the child.
$command .= "-Mblib ";
$command .= "-Mblib=$_ ";
last;
}
$command .= "$0 --build_index=1 ";
Expand Down