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 ask would be to provide a conditional check on this line to bypass the read from the cache if ttl=0 as it is currently impacting the reported miss rate when trying to only inspect the miss rate for queries/request where the cache is actively used.
The text was updated successfully, but these errors were encountered:
The current implementation will always check the cache regardless of what value is passed in for the
ttl
.Currently in the file
/src/HTTPCache.ts
on line78
there is no check ofttl
before reading from the cache:The ask would be to provide a conditional check on this line to bypass the read from the cache if
ttl=0
as it is currently impacting the reported miss rate when trying to only inspect the miss rate for queries/request where the cache is actively used.The text was updated successfully, but these errors were encountered: