You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cache is designed to support stateful operations while maintaining isolation between different triggers. Use the trigger-specific namespace for most operations and the global namespace only when data sharing across triggers is necessary.
587
+
588
+
##### Use TTL appropriately
589
+
Set realistic expiration times based on how frequently data changes.
-**Memory Usage**: Since cache contents are stored in memory, monitor your memory usage when caching large datasets.
615
+
-**Server Restarts**: Because the cache is cleared when the server restarts, design your plugins to handle cache initialization (as noted above).
616
+
-**Concurrency**: Be cautious of accessing inaccurate or out-of-date data when multiple trigger instances might simultaneously update the same cache key.
617
+
576
618
## Install Python dependencies
577
619
578
620
If your plugin needs additional Python packages, use the `influxdb3 install` command:
0 commit comments