Metadata-Version: 2.1
Name: aspine
Version: 2.0.0
Summary: Python-native async + multiprocessing hybrid caching system
Home-page: https://github.com/ccuulinay/aspine-dev
Author: ccuulinay
Author-email: ccuulinay@gmail.com
License: MIT
Project-URL: Documentation, https://aspine.readthedocs.io/
Project-URL: Source, https://github.com/ccuulinay/aspine-dev
Project-URL: Tracker, https://github.com/ccuulinay/aspine-dev/issues
Keywords: cache,caching,async,asyncio,multiprocessing,storage,memory,redis-like
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: Name Service (DNS)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.9.0
Requires-Dist: rich>=13.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: pytest-mock>=3.10.0; extra == "dev"
Requires-Dist: coverage[toml]>=7.0.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: jupyter>=1.0.0; extra == "docs"
Requires-Dist: mkdocs>=1.5.0; extra == "docs"
Requires-Dist: mkdocs-material>=9.0.0; extra == "docs"
Provides-Extra: perf
Requires-Dist: pytest-benchmark>=4.0.0; extra == "perf"
Requires-Dist: memory-profiler>=0.60.0; extra == "perf"


Aspine 2.0 - Python-native async + multiprocessing hybrid caching system

Aspine provides a high-performance in-memory cache with:
- Asyncio for client-side concurrency
- Multiprocessing for server-side data isolation
- Queue-based communication between layers
- LRU eviction and TTL support
- Optional disk persistence
- Pub/sub for cache invalidation
