Yes, routes like e.g.
$route = new MyZend_Router_CustomUrlRoute(
        ':lang/:pageid/*', 
        array(), 
        array('lang' => 'fr|nl|en')
);
$router->addRoute('custom_9', $route);




jasonistaken wrote:
> 
> I assume you mean routes, not routers? Correct?
> 
> On 12/08/2009 9:59 AM, debussy007 wrote:
>>
>> Hi,
>>
>> I defined 8 custom routers in my bootstrap, including the default router
>> that makes it 9 routers.
>> For every request, it will check the routers one by one as long as one
>> didn't match. Thus I wondered if I have to worry about performances for
>> e.g.
>> the URLs matching the last checked route or if it is insignificant. I
>> have
>> no idea.
>>
>> Thank you for any help.
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/8-custom-routers-...-should-I-worry-about-performance---tp24940719p24942442.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to