Tip: Build render array with cache tags
<?php
$nodes = $this->nodeStorage->loadMultiple($node_ids);
if (!empty($nodes)) {
$build['content'] = $this->viewBuilder->viewMultiple($nodes, 'booking_line');
}
$build['#cache'] = [
'tags' => ['node_list'],
'max-age' => 86400,
];