#4223 introduces a cache that is caching parsed filters and predicates for a single RouteGroup.
Sometimes you have a lot of RouteGroups that look very similar with a lot of predicates and filters that we could cache.
Think about Method("GET") you have almost N times in every RouteGroup. It does not need to be parsed on every RouteGroup again.
#4223 introduces a cache that is caching parsed filters and predicates for a single RouteGroup.
Sometimes you have a lot of RouteGroups that look very similar with a lot of predicates and filters that we could cache.
Think about
Method("GET")you have almost N times in every RouteGroup. It does not need to be parsed on every RouteGroup again.