Karmator
Karmator copied to clipboard
Search for karma values via regex
Should be somewhat straight forward to have regex searches over the karma values.
However there's a few attack vectors to be aware of such as:
- exponential backtracking regex
- cpu/memory leaks
- fact that the backing store is an sqlite database means we'll need to bring the values in memory for searching.
https://code.google.com/p/re2/ is one such regex engine that we could use.