ActionDeduplicator.ts
Hash-based tracking of recent actions within a configurable time window. Prevents identical actions from being executed twice in rapid succession. Caller computes the key string — this class is intentionally generic.
Time window in ms to track actions.
3600000 (1 hour) Copy
3600000 (1 hour)
Maximum tracked entries before LRU eviction.
10000 Copy
10000
File
ActionDeduplicator.ts
Description
Hash-based tracking of recent actions within a configurable time window. Prevents identical actions from being executed twice in rapid succession. Caller computes the key string — this class is intentionally generic.