>_
.issue.db
/highway-workflow-engine
Dashboard
Issues
Memory
Lessons
Audit Log
New Issue
Edit Issue #468
Update issue details
Title *
Description
Multiple hot-path functions compile regex patterns on every call instead of once: 1. engine/interpreters/operators.py:1137 - wait operation pattern 2. engine/interpreters/variable_resolver.py:207,240 - interpolation patterns FIX: Pre-compile regex patterns at module level as constants: ```python _WAIT_PATTERN = re.compile(r'...') # Module level def function(): match = _WAIT_PATTERN.match(...) # Reuse compiled ```
Priority
Low
Medium
High
Critical
Status
Open
In Progress
Closed
Won't Do
Due Date (YYYY-MM-DD)
Tags (comma separated)
Related Issues (IDs)
Enter IDs of issues related to this one. They will be linked as 'related'.
Update Issue
Cancel