SkillAgentSearch skills...

Cachecore

Simple Cache Base Classes for Python.

Install / Use

/learn @core/Cachecore
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

CacheCore

Simple cache backends, inspired by werkzeug.contrib.cache.

Creating a Cache Object

To create a cache object you just import the cache system of your choice from the cache module and instantiate it. Then you can start working with that object::

>>> from cachecore import SimpleCache
>>> c = SimpleCache()
>>> c.set("foo", "value")
>>> c.get("foo")
'value'
>>> c.get("missing") is None
True

Cache Types

  • In-Memory
  • Redis
  • Memcache
  • Filesystem
  • Your own (extend BaseCache)

Installation

Installing cachecore is simple with pip::

$ pip install cachecore

Related Skills

View on GitHub
GitHub Stars112
CategoryDevelopment
Updated12d ago
Forks10

Security Score

95/100

Audited on Mar 22, 2026

No findings