Add caching for gzipped response
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
import gzip
|
import gzip
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
from functools import lru_cache
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
@@ -44,6 +45,7 @@ ap.use_backend(back)
|
|||||||
MY_PERSON = ap.Person(**ME)
|
MY_PERSON = ap.Person(**ME)
|
||||||
|
|
||||||
|
|
||||||
|
@lru_cache(512)
|
||||||
def build_resp(resp):
|
def build_resp(resp):
|
||||||
"""Encode the response to gzip if supported by the client."""
|
"""Encode the response to gzip if supported by the client."""
|
||||||
headers = {}
|
headers = {}
|
||||||
|
Reference in New Issue
Block a user