Skip to content

Commit 9f434c4

Browse files
committed
Update the usage message to guide the users
1 parent 3d861cf commit 9f434c4

7 files changed

+21
-7
lines changed

ycsbc.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,10 @@ string ParseCommandLine(int argc, const char *argv[], utils::Properties &props)
204204
void UsageMessage(const char *command) {
205205
cout << "Usage: " << command << " [options]" << endl;
206206
cout << "Options:" << endl;
207+
cout << " -db dbname: specify the name of the DB to use (default: storeds)" << endl;
207208
cout << " -threads n: execute using n threads (default: 1)" << endl;
208-
cout << " -db dbname: specify the name of the DB to use (default: basic)" << endl;
209+
cout << " -dbpath dbpath: specify the name of the PMEM memory pool file to be created" << endl;
210+
cout << " -type dsname: specify the name of the data-structure to use" << endl;
209211
cout << " -P propertyfile: load properties from the given file. Multiple files can" << endl;
210212
cout << " be specified, and will be processed in the order specified" << endl;
211213
}

ycsbc_lock_overhead.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,10 @@ string LockOverheadParseCommandLine(int argc, const char *argv[], utils::Propert
243243
void LockOverheadUsageMessage(const char *command) {
244244
cout << "Usage: " << command << " [options]" << endl;
245245
cout << "Options:" << endl;
246+
cout << " -db dbname: specify the name of the DB to use (default: storeds)" << endl;
246247
cout << " -threads n: execute using n threads (default: 1)" << endl;
247-
cout << " -db dbname: specify the name of the DB to use (default: basic)" << endl;
248+
cout << " -dbpath dbpath: specify the name of the PMEM memory pool file to be created" << endl;
249+
cout << " -type dsname: specify the name of the data-structure to use" << endl;
248250
cout << " -P propertyfile: load properties from the given file. Multiple files can" << endl;
249251
cout << " be specified, and will be processed in the order specified" << endl;
250252
}

ycsbc_non_numa.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,10 @@ string NonNumaParseCommandLine(int argc, const char *argv[], utils::Properties &
204204
void NonNumaUsageMessage(const char *command) {
205205
cout << "Usage: " << command << " [options]" << endl;
206206
cout << "Options:" << endl;
207+
cout << " -db dbname: specify the name of the DB to use (default: storeds)" << endl;
207208
cout << " -threads n: execute using n threads (default: 1)" << endl;
208-
cout << " -db dbname: specify the name of the DB to use (default: basic)" << endl;
209+
cout << " -dbpath dbpath: specify the name of the PMEM memory pool file to be created" << endl;
210+
cout << " -type dsname: specify the name of the data-structure to use" << endl;
209211
cout << " -P propertyfile: load properties from the given file. Multiple files can" << endl;
210212
cout << " be specified, and will be processed in the order specified" << endl;
211213
}

ycsbc_parallel.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,10 @@ string ParallelParseCommandLine(int argc, const char *argv[], utils::Properties
217217
void ParallelUsageMessage(const char *command) {
218218
cout << "Usage: " << command << " [options]" << endl;
219219
cout << "Options:" << endl;
220+
cout << " -db dbname: specify the name of the DB to use (default: storeds)" << endl;
220221
cout << " -threads n: execute using n threads (default: 1)" << endl;
221-
cout << " -db dbname: specify the name of the DB to use (default: basic)" << endl;
222+
cout << " -dbpath dbpath: specify the name of the PMEM memory pool file to be created" << endl;
223+
cout << " -type dsname: specify the name of the data-structure to use" << endl;
222224
cout << " -P propertyfile: load properties from the given file. Multiple files can" << endl;
223225
cout << " be specified, and will be processed in the order specified" << endl;
224226
}

ycsbc_parallel_non_numa.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,10 @@ string NonNumaParallelParseCommandLine(int argc, const char *argv[], utils::Prop
217217
void NonNumaParallelUsageMessage(const char *command) {
218218
cout << "Usage: " << command << " [options]" << endl;
219219
cout << "Options:" << endl;
220+
cout << " -db dbname: specify the name of the DB to use (default: storeds)" << endl;
220221
cout << " -threads n: execute using n threads (default: 1)" << endl;
221-
cout << " -db dbname: specify the name of the DB to use (default: basic)" << endl;
222+
cout << " -dbpath dbpath: specify the name of the PMEM memory pool file to be created" << endl;
223+
cout << " -type dsname: specify the name of the data-structure to use" << endl;
222224
cout << " -P propertyfile: load properties from the given file. Multiple files can" << endl;
223225
cout << " be specified, and will be processed in the order specified" << endl;
224226
}

ycsbc_parallel_test.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,10 @@ string ParallelTestParseCommandLine(int argc, const char *argv[], utils::Propert
220220
void ParallelTestUsageMessage(const char *command) {
221221
cout << "Usage: " << command << " [options]" << endl;
222222
cout << "Options:" << endl;
223+
cout << " -db dbname: specify the name of the DB to use (default: storeds)" << endl;
223224
cout << " -threads n: execute using n threads (default: 1)" << endl;
224-
cout << " -db dbname: specify the name of the DB to use (default: basic)" << endl;
225+
cout << " -dbpath dbpath: specify the name of the PMEM memory pool file to be created" << endl;
226+
cout << " -type dsname: specify the name of the data-structure to use" << endl;
225227
cout << " -P propertyfile: load properties from the given file. Multiple files can" << endl;
226228
cout << " be specified, and will be processed in the order specified" << endl;
227229
}

ycsbc_test.cc

+3-1
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,10 @@ string TestParseCommandLine(int argc, const char *argv[], utils::Properties &pro
196196
void TestUsageMessage(const char *command) {
197197
cout << "Usage: " << command << " [options]" << endl;
198198
cout << "Options:" << endl;
199+
cout << " -db dbname: specify the name of the DB to use (default: storeds)" << endl;
199200
cout << " -threads n: execute using n threads (default: 1)" << endl;
200-
cout << " -db dbname: specify the name of the DB to use (default: basic)" << endl;
201+
cout << " -dbpath dbpath: specify the name of the PMEM memory pool file to be created" << endl;
202+
cout << " -type dsname: specify the name of the data-structure to use" << endl;
201203
cout << " -P propertyfile: load properties from the given file. Multiple files can" << endl;
202204
cout << " be specified, and will be processed in the order specified" << endl;
203205
}

0 commit comments

Comments
 (0)