Index: tagadelic.module
===================================================================
--- tagadelic.module	(revision 817)
+++ tagadelic.module	(working copy)
@@ -62,10 +62,18 @@
 /**
  * Implementation of hook_nodeapi
  * You will have a nice variable in $node available for processing tags!
+ * Also it's rewinds the tagadelic cache if node was updated.
  */
 function tagadelic_nodeapi(&$node, $op, $teaser, $page) {
-  if ($op == 'load') {
+  switch ($op) {
+    case 'load':
      $node->tags = tagadelic_node_get_terms($node);
+    break;
+    case 'insert':
+    case 'update':
+    case 'delete':
+      cache_clear_all('tagadelic_cache', 'cache', TRUE);
+    break;
   }
 }
 
