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
{{ message }}
This repository was archived by the owner on Dec 28, 2021. It is now read-only.
According to the Memcached wiki, expiration times in the range [0, 60*60*24*30] are treated as timedeltas, while anything higher is treated as a timestamp. The value 60*60*24*30 == 2592000 is currently treated as a timestamp when it should be a timedelta here.
Example:
importmockcachemc_client=mockcache.Client()
mc_client.set('key', 'value', 60*60*24*30)
assertmc_client.get('key') isnotNone# currently returns None
According to the Memcached wiki, expiration times in the range
[0, 60*60*24*30]are treated as timedeltas, while anything higher is treated as a timestamp. The value60*60*24*30 == 2592000is currently treated as a timestamp when it should be a timedelta here.Example: