update README

This commit is contained in:
c9s 2014-05-17 09:38:21 +08:00
parent 256cb8435a
commit fe9ca48135

View file

@ -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