I'm consistently getting 15s response times for the /codes/search endpoint. For reference, here's the body of the request:
{
"term": "",
"pagerSettings": {
"currentPage": 1,
"direction": "Asc",
"itemsPerPage": 10,
"orderBy": "name"
},
"summary": false
}
I can cache the first couple hundred results when the application loads, but as soon as a user searches for a code they'll need to wait for 15 seconds. Any thoughts on how this performance can be improved server side or the experience can improve for the user on the front end.
I'm consistently getting 15s response times for the
/codes/searchendpoint. For reference, here's the body of the request:I can cache the first couple hundred results when the application loads, but as soon as a user searches for a code they'll need to wait for 15 seconds. Any thoughts on how this performance can be improved server side or the experience can improve for the user on the front end.