Current status: wondering if there is a Go package that will build a serializable fast data structure for matching strings and regular expressions. You can pre-compile things in memory, but I don't think anything really supports serializing compiled REs to disk and then restoring them so you don't have to parse a giant pile of regexp text every time on startup.
Actually maybe regexp.syntax.Prog is serializable, since it doesn't seem to contain pointers or other troublesome things?
