You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a Go application (originally written by Dvir Volk) which supports reading, indexing and searching in [Wikipedia Abstract Data Dumps](https://s3.amazonaws.com/uploads-files/wiki_dump.gz)using two search engines:
6
+
This is a Go application (originally written by Dvir Volk) which supports reading, indexing and searching using two search engines:
*[Wikipedia Abstract Data Dumps](https://s3.amazonaws.com/benchmarks.redislabs/redisearch/datasets/enwiki-abstract/enwiki-latest-abstract.xml): from English-language Wikipedia:Database page abstracts. This use case generates 3 TEXT fields per document.
14
+
*[pmc](https://s3.amazonaws.com/benchmarks.redislabs/redisearch/datasets/pmc/documents.json): Full text benchmark with academic papers from PMC.
seconds:=flag.Int("duration", 5, "number of seconds to run the benchmark")
74
+
seconds:=flag.Int("duration", 60, "number of seconds to run the benchmark")
76
75
temporary:=flag.Int("temporary", -1, "for redisearch only, create a temporary index that will expire after the given amount of seconds, -1 mean no temporary")
77
76
conc:=flag.Int("c", 4, "benchmark concurrency")
78
77
maxDocPerIndex:=flag.Int("maxdocs", -1, "specify the numebr of max docs per index, -1 for no limit")
79
-
qs:=flag.String("queries", "hello world", "comma separated list of queries to benchmark")
78
+
qs:=flag.String("queries", "barack obama", "comma separated list of queries to benchmark. Use this option only for the historical reasons via `-queries='barack obama'`. If you don't specify a value it will read the input file and randomize the input search terms")
80
79
outfile:=flag.String("o", "benchmark.csv", "results output file. set to - for stdout")
81
80
cmdPrefix:=flag.String("prefix", "FT", "Command prefix for FT module")
0 commit comments