update readme

This commit is contained in:
c9s 2014-05-13 16:13:20 +08:00
parent 61bdba5ad4
commit 942928aa05

View file

@ -1,9 +1,9 @@
R2 R2
================ ================
libr2 is a DFA URI router library. It compiles your route paths into DFA state libr2 is an URI router library. It compiles your route paths into a radix tree.
table, and you may dispatch the URL based on the transition table in C. By using the constructed radix tree in the start-up time, you may dispatch your
routes efficiently.
Pattern Syntax Pattern Syntax
@ -21,13 +21,13 @@ Use case in PHP
```php ```php
// Here is the paths data structure // Here is the paths data structure
$paths = [ $paths = [
'/blog/post/{id}' => [ 'controller' => 'PostController', 'action' => 'item', 'method' => 'GET' ], '/blog/post/{id}' => [ 'controller' => 'PostController' , 'action' => 'item' , 'method' => 'GET' ] ,
'/blog/post' => [ 'controller' => 'PostController', 'action' => 'list', 'method' => 'GET' ], '/blog/post' => [ 'controller' => 'PostController' , 'action' => 'list' , 'method' => 'GET' ] ,
'/blog/post' => [ 'controller' => 'PostController', 'action' => 'create', 'method' => 'POST' ], '/blog/post' => [ 'controller' => 'PostController' , 'action' => 'create' , 'method' => 'POST' ] ,
'/blog' => [ 'controller' => 'BlogController', 'action' => 'list', 'method' => 'GET' ], '/blog' => [ 'controller' => 'BlogController' , 'action' => 'list' , 'method' => 'GET' ] ,
]; ];
$rs = r2_compile($paths, 'persisten-table-id'); $rs = r2_compile_radix($paths, 'persisten-table-id');
$ret = r2_dispatch($rs, '/blog/post/3' ); $ret = r2_dispatch_radix($rs, '/blog/post/3' );
list($complete, $route, $variables) = $ret; list($complete, $route, $variables) = $ret;
list($error, $message) = r2_validate($route); // validate route conditions list($error, $message) = r2_validate($route); // validate route conditions