Towards Fast Regular Expression Matching in Practice

Kai Wang,Jun Li
DOI: https://doi.org/10.1145/2534169.2491705
IF: 1.937
2013-01-01
ACM SIGCOMM Computer Communication Review
Abstract:Regular expression matching is popular in today's network devices with deep inspection function, but due to lack of algorithmic scalability, it is still the performance bottleneck in practical network processing. To address this problem, our method first partition regular expression patterns into simple segments to avoid state explosion, and then compile these segments into a compact data structure to achieve fast matching. Preliminary experiments illustrate that our matching engine scales linearly with the size of the real-world pattern set, and outperforms state-of-the-art solutions.
What problem does this paper attempt to address?