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
Added an option to include the functions source code when generating the cache
key. PR #156.
Added a new feature that allows one to completely control the way how cache keys
are generated. For example, one can now implement a function that generates
cache the keys based on the POST-based requests.
PR #159.
Fixed a few cache backend naming collisions by renaming them from simple to simplecache, null to nullcache and filesystem to filesystemcache.
Explicitly pass the default_timeout to RedisCache from RedisSentinelCache.
Use os.replace instead of werkzeug's rename due to Windows raising an OSError if the dst file already exist.
The delete_many function is now able to ignore any errors and continue
deleting the cache. However, in order to preserve backwards compatibility,
the default mode is to abort the deletion process. In order to use the new
deletion mode, one has to flip the config setting CACHE_IGNORE_ERRORS to True. This was and still is only relevant for the filesystem and simple cache backends. PR #94.
Re-added the gaememcached CACHE_TYPE for improved backwards compatibility.