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
Currently, there is a special case value "*" to manage for precondition headers like if-none-match / if-match.
This means that, each time we receive a request with this header set to "*" value, we have to retrieve from the database the weak etag associated with the feature concerned by the request.
Then we are able to check if the weak etag is present into the cache or not.
To overcome this need, and to avoid unsuitable load on the database service in these use cases, we will have to change the current data structure which store the etag into the cache.
Maybe the map key could be built like "-", and then storing a struct as a value containing :
the weak etag
the feature data
..
?
The text was updated successfully, but these errors were encountered:
Currently, there is a special case value "*" to manage for precondition headers like if-none-match / if-match.
This means that, each time we receive a request with this header set to "*" value, we have to retrieve from the database the weak etag associated with the feature concerned by the request.
Then we are able to check if the weak etag is present into the cache or not.
To overcome this need, and to avoid unsuitable load on the database service in these use cases, we will have to change the current data structure which store the etag into the cache.
Maybe the map key could be built like "-", and then storing a struct as a value containing :
The text was updated successfully, but these errors were encountered: