VaRest
VaRest copied to clipboard
Cache etag support
Good Afternoon.
How can I enable etag cache? I have server working with cache but always return 200 response in unreal but with postman return 304 (Not Modified).
So how I can set If-None-Match header
Thanks!
I'll check what I can do with it. It can be handled even now, but with manual header handling.
if (StandInETag.IsSet())
{
HttpRequest->SetHeader(TEXT("If-None-Match"), *StandInETag.GetValue());
}
https://issues.unrealengine.com/issue/UE-36317