forked from organicmaps/organicmaps-tmp
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:
parent
2d794703fd
commit
479a21cb05
2 changed files with 12 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -43,6 +43,8 @@ public:
|
|||
|
||||
class Query
|
||||
{
|
||||
public:
|
||||
void Clear() {}
|
||||
private:
|
||||
friend class IntervalIndex;
|
||||
vector<char> m_IntervalIndexCache;
|
||||
|
|
Loading…
Add table
Reference in a new issue