3
An http request for a service has its performance (bandwidth consumption/internet/time) changed if the parameter names are large?
Example. Requisition POST with the following parameters
{
"IdUsuario": 30735209,
"IdProdutoBase": 2,
"JsonServico": {
"IdCliente": 6,
"Versao": "1.6.0"
}
}
The requisition would go faster if it were:
{
"ius": 30735209,
"ipb": 2,
"jds": {
"icl": 6,
"vsa": "1.6.0"
}
}
A totally ridiculous time. And it will only get worse in understanding the code
– brhvitor6