diff options
author | Andre Barboza <bmg.andre@gmail.com> | 2017-04-06 09:50:28 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-06 21:03:15 +0700 |
commit | e5cad558f144fb59415fe5b2a89e391dc7c69f2d (patch) | |
tree | 590e8a1b337340ee1156da38daffea5cb0c58775 /libraries/libr3/README | |
parent | 36b2c6c7ea42fc05617c9342153d110fc8a0fff4 (diff) |
libraries/libr3: Added (high-performance path dispatching library).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libr3/README')
-rw-r--r-- | libraries/libr3/README | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libraries/libr3/README b/libraries/libr3/README new file mode 100644 index 0000000000000..75aade7d0eb2b --- /dev/null +++ b/libraries/libr3/README @@ -0,0 +1,10 @@ +R3 is an URL router library with high performance, thus, it's +implemented in C. It compiles your R3Route paths into a prefix +trie. + +By using the prefix tree constructed in the start-up time, you +can dispatch the path to the controller with high efficiency. + +Optional dependencies: + - Grapviz: rendering Routes With Graphviz + GRAPHVIZ=yes ./libr3.SlackBuild |