معرفی شرکت ها


cyclip-simplecache-1.1.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Pure-python implementation of Least Recently Used (LRU) caching. It allows a developer to easily use memoization on expensive function calls.
ویژگی مقدار
سیستم عامل -
نام فایل cyclip-simplecache-1.1.2
نام cyclip-simplecache
نسخه کتابخانه 1.1.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Cyclip
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/Cyclip/SimpleCache
آدرس اینترنتی https://pypi.org/project/cyclip-simplecache/
مجوز MIT
# SimpleCache Pure-python implementation of Least Recently Used (LRU) caching. It allows a developer to easily use memoization on expensive function calls. ## Getting Started These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. ### Prerequisites No other modules are required - Python >=3.7.9 - SimpleCache module #### Installing the module `python -m pip install cyclip-simplecache` ### Examples **Minimal usage** ```Python from SimpleCache import Cache cache = Cache() @cache.cache_function def expensive_function(n, m): total = 0 for i in n: for j in m: total += i * j return total ``` **All arguments** ```Python from SimpleCache import Cache from hashlib import sha256 cache = Cache( cacheDir="caches/cache", # Where cache will be stored algorithm=sha256, # Algorithm used maxSize=5000000, # Max cache storage maxItemSize=250000, # Max items cached evictionSize=20, # Items evicted compress=False # Compress cache to save storage ) @cache.cache_function def expensive_function(n): total = 0 for i in n: for j in m: total += i * j return total ``` ## Built With * [Python](https://www.python.org/) - Programming language ## Versioning We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/your/project/tags). ## Author **Cyclip** - [GitHub](https://github.com/Cyclip) ## License This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details ## Project status Project is complete, and the code is not guaranteed to be updated.


نحوه نصب


نصب پکیج whl cyclip-simplecache-1.1.2:

    pip install cyclip-simplecache-1.1.2.whl


نصب پکیج tar.gz cyclip-simplecache-1.1.2:

    pip install cyclip-simplecache-1.1.2.tar.gz