Merge pull request #4959 from darina/traffic-cache-size

Reduce traffic cache size.
This commit is contained in:
ygorshenin 2016-12-12 16:47:14 +03:00 committed by GitHub
commit ced9f3bb90
2 changed files with 2 additions and 2 deletions

View file

@ -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),

View file

@ -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 =