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
Set the timeout value to 999999999999, request the key back after 10 seconds and cache doesn't return the value. Observable in latest NPM version => 0.1.6
cache.put(key, value, 999999999999);
The text was updated successfully, but these errors were encountered:
Upon further investigation, this is because this library uses setTimeout to control the cache expiration. This means that the maximum value that can be passed in is 2147483647 (maximum positive 32 bit signed integer)
Set the timeout value to 999999999999, request the key back after 10 seconds and cache doesn't return the value. Observable in latest NPM version => 0.1.6
cache.put(key, value, 999999999999);
The text was updated successfully, but these errors were encountered: