diff --git a/src/Plugin/views/row/SearchApiRow.php b/src/Plugin/views/row/SearchApiRow.php
index d7459e8..cd26cea 100644
--- a/src/Plugin/views/row/SearchApiRow.php
+++ b/src/Plugin/views/row/SearchApiRow.php
@@ -223,7 +223,11 @@ class SearchApiRow extends RowPluginBase {
     }
     try {
       $view_mode = $this->options['view_modes'][$datasource_id];
-      return $this->index->getDataSource($datasource_id)->viewItem($row->_item, $view_mode);
+
+      $renderArray = $this->index->getDataSource($datasource_id)->viewItem($row->_item, $view_mode);
+      $renderArray['#cache']['tags'][] = $row->search_api_id;
+
+      return $renderArray;
     }
     catch (SearchApiException $e) {
       watchdog_exception('search_api', $e);
