use LRUSet to skip already seen event processing

This commit is contained in:
Martti Malmi
2024-01-04 10:36:23 +02:00
parent c2899eac26
commit 287ce32690
5 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,3 @@
import LRUSet from "@snort/shared/src/LRUSet";
export default new LRUSet<string>(2000);