Open Issues Need Help
View All on GitHub perf: Use lazy_static/once_cell for regex compilation in link_detector about 11 hours ago
AI Summary: This issue addresses a performance problem where the link detection regex is recompiled on every function call. The proposed solution is to use `once_cell::sync::Lazy` to compile the regex only once and store it statically. This change is expected to provide an easy and significant performance improvement.
Complexity:
1/5
good first issue performance