Avoid validations and extractions on bulky inputs
This section complements Minimize the number of validations. Both validation and variable extraction mechanisms are greedy resource consumers. This is all the more true when the response or header they work on is bulky (a response that is larger than 100 Kb).
It is necessary to avoid including validations and variable extractions, particularly when they use bulky inputs. In some situations, either validation or variable extraction is inevitable. In that case, it is necessary to ensure that the technique used is optimized.
Home