Displaying 1 result from an estimated 1 matches for "doc_ct".
Did you mean:
doc_cnt
2018 Nov 30
1
Xapian Benchmark results
...tabase.commit();
cout <<"count::" <<database.get_doccount() <<endl;
}
catch (const Xapian::Error &e) {
cout << e.get_description() << endl;
exit(1);
}
}
int main(int argc, char **argv)
{
vector<thread> threads;
int doc_ct = 0;
char queries[][20] = {"Probation","Volleyball"};
int th = 0;
vector<string> documents[NUM_THREADS];
Xapian::WritableDatabase dbs[NUM_THREADS];
for(th=0;th<NUM_THREADS;++th)
{
//string s = argv[1] + to_string("\\")+to_string(th);...