blob: bc5b4f62b248f4e77499da547821a087acdbfe5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Directory structure:
.
|-- seed.sh (Shell script)
|-- benchmark.pl (The runner we just wrote)
|-- _site
| |-- cgi-bin
| | |-- indexer.pl (Creates the SA index)
| | |-- find_sa.cgi (Suffix Array search)
| | `-- find_regex.cgi (Regex search)
| `-- log/ (Created by seed.sh)
chmod +x seed.sh benchmark.pl _site/cgi-bin/*.cgi _site/cgi-bin/*.pl
perl benchmark.pl 3 10 50
|