-
Notifications
You must be signed in to change notification settings - Fork 376
New issue
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
feat: add radix tree router and regex router for restful api #475
Conversation
feat: add radix tree router and regex router
Code Coverage Report
|
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #475 +/- ##
==========================================
+ Coverage 64.93% 65.52% +0.58%
==========================================
Files 217 218 +1
Lines 14030 14363 +333
==========================================
+ Hits 9111 9411 +300
- Misses 4919 4952 +33 ☔ View full report in Codecov by Sentry. |
include/cinatra/coro_http_router.hpp
Outdated
if (whole_str.find("{") != std::string::npos || | ||
whole_str.find(")") != std::string::npos) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是不是漏掉了url 里有 ":" 的情况?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
url有:全部用radix tree处理
Code Coverage Report
|
Code Coverage Report
|
Code Coverage Report
|
Code Coverage Report
|
Code Coverage Report
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.