-
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
The main idea is that each node process the entire pending path and consume a part of a url, for example:
GET /one/two/three/do
Imagine an API with the following nodes:
/ -> one -> path -> do
- The node
onereceives/one/two/three/doand consumes/one - The node
pathreceives/two/three/doand consumes/two/three - The node
doreceives/doand consumes/do - All the url has been consumed, so the framework executed the method 'GET' for that node
NOTE: this feature changes the way urls are processed, can introduce border cases to treat and can affect the performance.