forked from organicmaps/organicmaps
Merge pull request #4959 from darina/traffic-cache-size
Reduce traffic cache size.
This commit is contained in:
commit
ced9f3bb90
2 changed files with 2 additions and 2 deletions
|
@ -554,7 +554,7 @@ void DrapeEngine::UpdateTraffic(traffic::TrafficInfo const & info)
|
|||
#endif
|
||||
|
||||
df::TrafficSegmentsColoring segmentsColoring;
|
||||
segmentsColoring.insert(make_pair(info.GetMwmId(), info.GetColoring()));
|
||||
segmentsColoring.emplace(info.GetMwmId(), info.GetColoring());
|
||||
|
||||
m_threadCommutator->PostMessage(ThreadsCommutator::ResourceUploadThread,
|
||||
make_unique_dp<UpdateTrafficMessage>(move(segmentsColoring), false),
|
||||
|
|
|
@ -127,7 +127,7 @@ char const kTrafficEnabledKey[] = "TrafficEnabled";
|
|||
|
||||
double const kDistEqualQueryMeters = 100.0;
|
||||
|
||||
size_t constexpr kMaxTrafficCacheSizeBytes = 128 /* Mb */ * 1024 * 1024;
|
||||
size_t constexpr kMaxTrafficCacheSizeBytes = 64 /* Mb */ * 1024 * 1024;
|
||||
|
||||
// Must correspond SearchMarkType.
|
||||
vector<string> kSearchMarks =
|
||||
|
|
Loading…
Add table
Reference in a new issue