Metadata-Version: 2.1
Name: wumpy-cache
Version: 0.1.0
Summary: Simple and plain caching for Discord API libraries.
Keywords: wumpy,wumpus,wrapper,discord,discord-api,discord-bot,discord-api-wrapper,python-3
Author-email: Bluenix <bluenixdev@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: Development Status :: 1 - Planning
Classifier: Framework :: AnyIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Dist: anyio >= 3.3.4, <4
Requires-Dist: typing_extensions >= 4, <5
Requires-Dist: discord-typings >= 0.4.0, <1
Requires-Dist: wumpy-models >= 0.1.0, <1
Project-URL: Homepage, https://github.com/wumpyproject/wumpy
Project-URL: Repository, https://github.com/wumpyproject/wumpy/tree/main/library/wumpy-cache
Project-URL: documentation, https://wumpy.rtfd.io

# Wumpy-cache

Simple memory cache for the gateway.

The default implementation in `wumpy-cache` is rather simple dictionaries, but
it can be overriden by other implementations as long as they follow the typing
`Cache` Protocol.

This means that you can use alternate implementations of data structures for
more efficient retrieval for your use-case or offload caching to something like
Redis or even store it in Postgres.

