updateCaches method

void updateCaches()

Updates the internal caches by reading the Frontend Server output files.

Will only read the incremental files on additional calls.

Implementation

void updateCaches() {
  if (!_haveReadOriginals) {
    _updateCaches(_mapOriginal, _jsonOriginal);
    _haveReadOriginals = true;
  } else {
    _updateCaches(_mapIncremental, _jsonIncremental);
  }
}