You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The client's check method always validates the schema against jsonschema v4 before checking the data is valid against the schema. For a high volume application, with a small number of schemas, this means we are performing the same validation over and over again. We are already using caching in this lib, so makes sense to also cache this validation result.
The text was updated successfully, but these errors were encountered:
The client's
check
method always validates the schema against jsonschema v4 before checking the data is valid against the schema. For a high volume application, with a small number of schemas, this means we are performing the same validation over and over again. We are already using caching in this lib, so makes sense to also cache this validation result.The text was updated successfully, but these errors were encountered: