Before I work out the kinks to support, anyone have any comments
regarding using a syntax like the follows in the config for routing:
config = {}
config.routes = {
{ "^/map/*",
output_filters={"CriteriaQuery.MapSchema"} },
{ "^/schema/*",
handler="_schema" },
{ "^/shutdown/*",
handler="_shutdown" },
{ "^/stats$",
handler="_stats" },
{ "^/stats/log$",
handler="_log_stats" },
{ "^/stats/error$",
handler="_error_stats" },
{ "^/stats/args$",
handler="_args_stats" },
{ "^/cq/*",
input_filters={ "CriteriaQuery.BuildSQL" },
handler="_db",
output_filters={"CriteriaQuery.MapResults"}},
{ "^/db/*",
handler="_db" }
}