summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/postinglistbm/andstress.h
blob: b752e602f5dcd1da553c87f9415e257afd47a3fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once


#include <vector>
namespace search
{
class Rand48;

namespace fakedata
{

class FakeWordSet;

}

}

namespace postinglistbm
{

class AndStress
{
public:
    AndStress();

    ~AndStress();

    void
    run(search::Rand48 &rnd,
        search::fakedata::FakeWordSet &wordSet,
        unsigned int numDocs,
        unsigned int commonDocFreq,
        const std::vector<std::string> &postingTypes,
        unsigned int loops,
        unsigned int skipCommonPairsRate,
        uint32_t numTasks,
        uint32_t stride,
        bool unpack);
};

} // namespace postinglistbm