Pues yo podría hacer dos cosas:
1) ejecutar este script antes de ejecutar el sql que trae toda la info en el front.
Código PHP:
Ver original<?php
db_query("DELETE FROM {cache};");
?>
2) crearia un modulo llamado borrarcache y pondría en el archivo.module esto:
Código PHP:
Ver original<?php
function prueba_node_update(Drupal Core Entity EntityInterface $node) {
db_query("DELETE FROM {cache};");
}
function prueba_node_insert(Drupal Core Entity EntityInterface $node) {
db_query("DELETE FROM {cache};");
}
?>