Init logic - #4
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR initializes the basic structure and logic for the py-cashier caching library. It provides a comprehensive caching solution that supports both synchronous and asynchronous operations with TTL (Time-To-Live) and LRU (Least Recently Used) eviction policies.
- Implements core caching functionality with decorator-based interface supporting both sync and async functions
- Provides configurable storage backends, key builders, and serializers for flexible caching strategies
- Includes comprehensive test coverage for all components and configuration/documentation files
Reviewed Changes
Copilot reviewed 38 out of 47 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| todo | Task list for future development |
| pyproject.toml | Project configuration with dependencies and build settings |
| py_cashier/_decorators.py | Core cache decorator implementation |
| py_cashier/_storages/ | Storage backend implementations including TTL map storage |
| py_cashier/_serializers/ | Key serialization strategies (str, repr, hash, MD5) |
| py_cashier/_key_builders/ | Cache key generation logic |
| py_cashier/_utils.py | Utility functions for argument parsing and type checking |
| tests/ | Comprehensive test suite covering all functionality |
| docs/ | Documentation and examples |
| .github/workflows/ | CI/CD pipeline configuration |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.