public function writeCachedConfigurationIfMissing()
{
/** @var StringFrontend $cache */
$cache = $this->manager->getCache('fluidcontent');
$hasCache = $cache->has('pageTsConfig');
if (FALSE === $hasCache) {
$cache->set('pageTsConfig', $this->getPageTsConfig(), array(), 86400);
}
}