(gridfs)=
GridFS is a specification for storing large files in MongoDB.
Use this backend if you are using MongoDB and expect to store responses larger than 16MB. See {py:mod}~requests_cache.backends.mongodb for more general info.
Initialize with a {py:class}.GridFSCache instance:
>>> from requests_cache import CachedSession, GridFSCache >>> session = CachedSession(backend=GridFSCache())
Or by alias:
>>> session = CachedSession(backend='gridfs')