update README
This commit is contained in:
parent
256cb8435a
commit
fe9ca48135
1 changed files with 9 additions and 4 deletions
13
README.md
13
README.md
|
@ -1,7 +1,7 @@
|
||||||
R3
|
R3
|
||||||
================
|
================
|
||||||
|
|
||||||
R3 is an URI router library with high performance, thus, it's implemented in C.
|
R3 is an URL router library with high performance, thus, it's implemented in C.
|
||||||
It compiles your route paths into a prefix trie.
|
It compiles your route paths into a prefix trie.
|
||||||
|
|
||||||
By using the constructed prefix trie in the start-up time, you can dispatch
|
By using the constructed prefix trie in the start-up time, you can dispatch
|
||||||
|
@ -11,7 +11,8 @@ routes with efficiency.
|
||||||
Requirement
|
Requirement
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
* cmake
|
* autoconf
|
||||||
|
* automake
|
||||||
* check
|
* check
|
||||||
* pcre
|
* pcre
|
||||||
* jemalloc
|
* jemalloc
|
||||||
|
@ -110,7 +111,11 @@ if ( $error ) {
|
||||||
Install
|
Install
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
cmake CMakeLists.txt -Wno-dev
|
./autogen.sh
|
||||||
make
|
./configure && make
|
||||||
|
make check # run tests
|
||||||
sudo make install
|
sudo make install
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue