Map Tree Router

Motivation

Many Pedestal-based services do not leverage every routing feature. The Map Tree router is optimized for the static routes use case.

Why use it?

Routes requests in constant time (path matching is done by map lookup).

How to use it?

Add the key :io.pedestal.http/router to the service map with the value :map-tree.

Caveats

If the routes provided have any path parameters or wildcards, the Prefix Tree Router will be used instead.

Additional Notes

Like the Prefix Tree Router, query and path constraints are not used in routing decisions. They are only used to invalidate a route match.

References