()
| 146 | } |
| 147 | |
| 148 | func (e *Engine) gcSequences() { |
| 149 | for { |
| 150 | <-e.scavenger.C |
| 151 | for _, seq := range e.sequences { |
| 152 | seq.gc() |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | // Compile loads macros/rules and builds an indexable filter set. |
| 158 | // For every rule in the ruleset the condition is compiled and |