Temp performance testing

This commit is contained in:
Adam Hopkins 2021-02-09 12:25:08 +02:00
parent 5f17e9591b
commit 6b68c3702e
2 changed files with 28 additions and 21 deletions

View File

@ -11,6 +11,9 @@ from sanic.exceptions import MethodNotSupported, NotFound
from sanic.request import Request from sanic.request import Request
ROUTER_CACHE_SIZE = 1024
class Router(BaseRouter): class Router(BaseRouter):
""" """
The router implementation responsible for routing a :class:`Request` object The router implementation responsible for routing a :class:`Request` object
@ -20,33 +23,20 @@ class Router(BaseRouter):
DEFAULT_METHOD = "GET" DEFAULT_METHOD = "GET"
ALLOWED_METHODS = HTTP_METHODS ALLOWED_METHODS = HTTP_METHODS
@lru_cache @lru_cache(maxsize=ROUTER_CACHE_SIZE)
def get(self, request: Request): def _get(self, path, method, host):
"""
Retrieve a `Route` object containg the details about how to handle
a response for a given request
:param request: the incoming request object
:type request: Request
:return: details needed for handling the request and returning the
correct response
:rtype: Tuple[ RouteHandler, Tuple[Any, ...], Dict[str, Any], str, str,
Optional[str], bool, ]
"""
try: try:
route, handler, params = self.resolve( route, handler, params = self.resolve(
path=request.path, path=path,
method=request.method, method=method,
extra={"host": request.headers.get("host")}, extra={"host": host},
) )
except RoutingNotFound as e: except RoutingNotFound as e:
raise NotFound("Requested URL {} not found".format(e.path)) raise NotFound("Requested URL {} not found".format(e.path))
except NoMethod as e: except NoMethod as e:
raise MethodNotSupported( raise MethodNotSupported(
"Method {} not allowed for URL {}".format( "Method {} not allowed for URL {}".format(method, path),
request.method, request.path method=method,
),
method=request.method,
allowed_methods=e.allowed_methods, allowed_methods=e.allowed_methods,
) )
@ -64,6 +54,22 @@ class Router(BaseRouter):
route.ctx.ignore_body, route.ctx.ignore_body,
) )
def get(self, request: Request):
"""
Retrieve a `Route` object containg the details about how to handle
a response for a given request
:param request: the incoming request object
:type request: Request
:return: details needed for handling the request and returning the
correct response
:rtype: Tuple[ RouteHandler, Tuple[Any, ...], Dict[str, Any], str, str,
Optional[str], bool, ]
"""
return self._get(
request.path, request.method, request.headers.get("host")
)
def add( def add(
self, self,
uri: str, uri: str,
@ -163,7 +169,7 @@ class Router(BaseRouter):
handler = getattr(handler.view_class, request.method.lower()) handler = getattr(handler.view_class, request.method.lower())
return hasattr(handler, "is_stream") return hasattr(handler, "is_stream")
# @lru_cache(maxsize=ROUTER_CACHE_SIZE) @lru_cache(maxsize=ROUTER_CACHE_SIZE)
def find_route_by_view_name(self, view_name, name=None): def find_route_by_view_name(self, view_name, name=None):
""" """
Find a route in the router based on the specified view name. Find a route in the router based on the specified view name.

View File

@ -5,6 +5,7 @@ import secrets
import socket import socket
import stat import stat
import sys import sys
import time
from asyncio import CancelledError from asyncio import CancelledError
from functools import partial from functools import partial