We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
GET /one/two/three/do
Imagine an API with the following nodes: / -> one -> path -> do
/
one
path
do
/one/two/three/do
/one
/two/three/do
/two/three
/do
NOTE: this feature changes the way urls are processed, can introduce border cases to treat and can affect the performance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
one
receives/one/two/three/do
and consumes/one
path
receives/two/three/do
and consumes/two/three
do
receives/do
and consumes/do
NOTE: this feature changes the way urls are processed, can introduce border cases to treat and can affect the performance.
The text was updated successfully, but these errors were encountered: