Add Clear() method to Query, which allows to use a single query multiple times. This saves processor time on initialization / de-initialization of caches.

This commit is contained in:
Yury Melnichek 2011-02-12 23:30:54 +01:00 committed by Alex Zolotarev
parent 2d794703fd
commit 479a21cb05
2 changed files with 12 additions and 0 deletions

View file

@ -259,6 +259,16 @@ public:
// Defines base Query type.
class Query : public BaseT::Query
{
public:
// Clear query, so that it can be reused.
// This function doesn't release caches!
void Clear()
{
m_Offsets.clear();
BaseT::Query::Clear();
}
private:
// TODO: Remember max offsets.size() and initialize offsets with it?
unordered_set<uint32_t> m_Offsets;
friend class UniqueOffsetAdapter;

View file

@ -43,6 +43,8 @@ public:
class Query
{
public:
void Clear() {}
private:
friend class IntervalIndex;
vector<char> m_IntervalIndexCache;