Name | cachetoolz JSON |
Version |
0.4.1
JSON |
| download |
home_page | None |
Summary | This library provides a decorator for caching functions |
upload_time | 2024-10-14 12:26:24 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
async
cache
mongo
python
redis
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Cache Toolz
[![License GPLv3+](https://img.shields.io/pypi/l/cachetoolz?label=License&color=%234B78E6)](https://codeberg.org/taconi/cachetoolz/src/branch/main/LICENSE)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/cachetoolz.svg?logo=python&label=Python&color=%234B78E6)](https://pypi.python.org/pypi/cachetoolz/)
[![PyPI version](https://img.shields.io/pypi/v/cachetoolz.svg?logo=pypi&label=PyPI&color=%23FA9BFA)](https://pypi.org/project/cachetoolz/)
[![Downloads](https://img.shields.io/pypi/dm/cachetoolz?logo=pypi&label=Downloads&color=%2373DC8C)](https://pypi.org/project/cachetoolz/)
[![Documentation](https://img.shields.io/badge/Documentation-1769AA?color=%234B78E6)](https://cachetoolz.readthedocs.io)
[![Changelog](https://img.shields.io/badge/Changelog-1769AA?color=%2373DC8C)](https://cachetoolz.readthedocs.io/changelog)
[![Issue Tracker](https://img.shields.io/badge/Issue%20Tracker-1769AA?color=%23FA9BFA)]("https://codeberg.org/taconi/cachetoolz/issues")
[![Contributing](https://img.shields.io/badge/Contributing-1769AA?color=%234B78E6)](https://cachetoolz.readthedocs.io/contributing)
[![Built with Material for MkDocs](https://img.shields.io/badge/Material_for_MkDocs-526CFE?logo=MaterialForMkDocs&logoColor=white)](https://squidfunk.github.io/mkdocs-material/)
This library offers a decorator that enhances the functionality of caching functions.
Caching is a technique commonly used in software development to improve performance by storing the results of expensive or time-consuming function calls. With this library, you can easily apply caching to your functions using a decorator.
The decorator provided by this library automatically checks if the function has been called with the same set of arguments before. If it has, instead of executing the function again, it returns the cached result, saving valuable processing time. However, if the function is called with new or different arguments, it will execute normally and cache the result for future use.
By incorporating this caching decorator into your code, you can optimize the execution of functions that involve complex computations, database queries, API calls, or any other operations that could benefit from caching.
Overall, this library simplifies the implementation of caching in your applications, allowing you to enhance performance and reduce resource consumption effectively.
# Installation
Install and update using [pip](https://pip.pypa.io/en/stable/getting-started/):
```{.sh linenums=0}
pip install cachetoolz
```
# A Example
```python title="todo.py" hl_lines="16-17 25-26 30-31 35-36"
from dataclasses import asdict, dataclass, field
from datetime import timedelta
from uuid import UUID, uuid4
from cachetoolz import cache
from cachetoolz.coder import coder
TODOS: list['Todo'] = []
@dataclass
class Todo:
title: str
status: bool = field(default=False, compare=False)
id: UUID = field(default_factory=uuid4, compare=False)
# Registering an object coder
@coder.register
class TodoSerializer:
def encode(self, value: Todo): # Need type annotated
return asdict(value)
def decode(self, value):
return Todo(**value)
# Adding cache to function with expiry time in seconds
@cache(ttl=120, namespace='todo')
def get_one(id: UUID):
return next(filter(lambda todo: todo.id == id, TODOS), None)
# Adding expiry time using timedelta
@cache(ttl=timedelta(minutes=30), namespace='todo')
def get_all():
return TODOS
# Clear all caches on given namesoaces
@cache.clear(namespaces=['todo'])
def add_one(title, status=False):
if (todo := Todo(title=title, status=status)) not in TODOS:
TODOS.append(todo)
```
Raw data
{
"_id": null,
"home_page": null,
"name": "cachetoolz",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "taconi <igor.taconi@protonmail.com>",
"keywords": "async, cache, mongo, python, redis",
"author": null,
"author_email": "taconi <igor.taconi@protonmail.com>",
"download_url": "https://files.pythonhosted.org/packages/a8/e6/f51e8991e6380cd496d1265596c5b50f460c46eecac00bfad6c2e9de96b3/cachetoolz-0.4.1.tar.gz",
"platform": null,
"description": "# Cache Toolz\n\n[![License GPLv3+](https://img.shields.io/pypi/l/cachetoolz?label=License&color=%234B78E6)](https://codeberg.org/taconi/cachetoolz/src/branch/main/LICENSE)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/cachetoolz.svg?logo=python&label=Python&color=%234B78E6)](https://pypi.python.org/pypi/cachetoolz/)\n[![PyPI version](https://img.shields.io/pypi/v/cachetoolz.svg?logo=pypi&label=PyPI&color=%23FA9BFA)](https://pypi.org/project/cachetoolz/)\n[![Downloads](https://img.shields.io/pypi/dm/cachetoolz?logo=pypi&label=Downloads&color=%2373DC8C)](https://pypi.org/project/cachetoolz/)\n[![Documentation](https://img.shields.io/badge/Documentation-1769AA?color=%234B78E6)](https://cachetoolz.readthedocs.io)\n[![Changelog](https://img.shields.io/badge/Changelog-1769AA?color=%2373DC8C)](https://cachetoolz.readthedocs.io/changelog)\n[![Issue Tracker](https://img.shields.io/badge/Issue%20Tracker-1769AA?color=%23FA9BFA)](\"https://codeberg.org/taconi/cachetoolz/issues\")\n[![Contributing](https://img.shields.io/badge/Contributing-1769AA?color=%234B78E6)](https://cachetoolz.readthedocs.io/contributing)\n[![Built with Material for MkDocs](https://img.shields.io/badge/Material_for_MkDocs-526CFE?logo=MaterialForMkDocs&logoColor=white)](https://squidfunk.github.io/mkdocs-material/)\n\nThis library offers a decorator that enhances the functionality of caching functions.\n\nCaching is a technique commonly used in software development to improve performance by storing the results of expensive or time-consuming function calls. With this library, you can easily apply caching to your functions using a decorator.\n\nThe decorator provided by this library automatically checks if the function has been called with the same set of arguments before. If it has, instead of executing the function again, it returns the cached result, saving valuable processing time. However, if the function is called with new or different arguments, it will execute normally and cache the result for future use.\n\nBy incorporating this caching decorator into your code, you can optimize the execution of functions that involve complex computations, database queries, API calls, or any other operations that could benefit from caching.\n\nOverall, this library simplifies the implementation of caching in your applications, allowing you to enhance performance and reduce resource consumption effectively.\n\n# Installation\n\nInstall and update using [pip](https://pip.pypa.io/en/stable/getting-started/):\n\n```{.sh linenums=0}\npip install cachetoolz\n```\n\n# A Example\n\n```python title=\"todo.py\" hl_lines=\"16-17 25-26 30-31 35-36\"\nfrom dataclasses import asdict, dataclass, field\nfrom datetime import timedelta\nfrom uuid import UUID, uuid4\n\nfrom cachetoolz import cache\nfrom cachetoolz.coder import coder\n\nTODOS: list['Todo'] = []\n\n@dataclass\nclass Todo:\n title: str\n status: bool = field(default=False, compare=False)\n id: UUID = field(default_factory=uuid4, compare=False)\n\n# Registering an object coder\n@coder.register\nclass TodoSerializer:\n def encode(self, value: Todo): # Need type annotated\n return asdict(value)\n\n def decode(self, value):\n return Todo(**value)\n\n# Adding cache to function with expiry time in seconds\n@cache(ttl=120, namespace='todo')\ndef get_one(id: UUID):\n return next(filter(lambda todo: todo.id == id, TODOS), None)\n\n# Adding expiry time using timedelta\n@cache(ttl=timedelta(minutes=30), namespace='todo')\ndef get_all():\n return TODOS\n\n# Clear all caches on given namesoaces\n@cache.clear(namespaces=['todo'])\ndef add_one(title, status=False):\n if (todo := Todo(title=title, status=status)) not in TODOS:\n TODOS.append(todo)\n```\n",
"bugtrack_url": null,
"license": null,
"summary": "This library provides a decorator for caching functions",
"version": "0.4.1",
"project_urls": {
"Changelog": "https://cachetoolz.readthedocs.io/changelog",
"Contributing": "https://cachetoolz.readthedocs.io/contributing",
"Documentation": "https://cachetoolz.readthedocs.io",
"Homepage": "https://codeberg.org/taconi/cachetoolz/#cache-toolz",
"Issue Tracker": "https://codeberg.org/taconi/cachetoolz/issues",
"Repository": "https://codeberg.org/taconi/cachetoolz/"
},
"split_keywords": [
"async",
" cache",
" mongo",
" python",
" redis"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "6430ae4ca70e4e20154f88ce12d31adabf0cabcdc39ec4167961f1e63566e211",
"md5": "d6d65a344e406d45ceeff432ef6f67f3",
"sha256": "e94db8a5e253c1aa20e797bbc3ffff7d03e3e91222b705cfa30cce3362aa7c10"
},
"downloads": -1,
"filename": "cachetoolz-0.4.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d6d65a344e406d45ceeff432ef6f67f3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 30143,
"upload_time": "2024-10-14T12:26:26",
"upload_time_iso_8601": "2024-10-14T12:26:26.774359Z",
"url": "https://files.pythonhosted.org/packages/64/30/ae4ca70e4e20154f88ce12d31adabf0cabcdc39ec4167961f1e63566e211/cachetoolz-0.4.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8e6f51e8991e6380cd496d1265596c5b50f460c46eecac00bfad6c2e9de96b3",
"md5": "8c1a1caa4956b6cf5af22f0fd7331cad",
"sha256": "9f714e26caa3f26e7eed75b7d0d2cf293b72704a17efa08f47c04bfa1423cbe0"
},
"downloads": -1,
"filename": "cachetoolz-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "8c1a1caa4956b6cf5af22f0fd7331cad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 26223,
"upload_time": "2024-10-14T12:26:24",
"upload_time_iso_8601": "2024-10-14T12:26:24.958266Z",
"url": "https://files.pythonhosted.org/packages/a8/e6/f51e8991e6380cd496d1265596c5b50f460c46eecac00bfad6c2e9de96b3/cachetoolz-0.4.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-14 12:26:24",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": true,
"codeberg_user": "taconi",
"codeberg_project": "cachetoolz",
"lcname": "cachetoolz"
}