{ "info": { "author": "Aquil H. Abdullah", "author_email": "aquil.abdullah@gmail.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# Yet Another Cache Implementation\n\nSo you may be asking \"Is there really a need for yet another cache\nimplementation?\" I mean we already have:\n- the [memoize pattern](https://dbader.org/blog/python-memoization)\n- [pymemcache](https://github.com/pinterest/pymemcache) - A comprehensive, fast, pure-Python memcached client\n- [DiskCache](http://www.grantjenks.com/docs/diskcache/) - An Apache2 licensed disk and file backed cache library, written in pure-Python\n- [minicache](https://github.com/duboviy/minicache) - Python memory caching utilities for Python 2 and 3 versions, also PyPy.\n- [pylibmc](https://github.com/lericson/pylibmc) - A Python wrapper around the libmemcached interface from TangentOrg.\n- the [memento pattern](http://code.activestate.com/recipes/286132-memento-design-pattern-in-python/) - a way of saving state\n\nThe answer is no, there are plenty of caching libraries and patterns out\nthere and yet another one isn't necessary, so with that being said,\nhere is **Y**et **A**nother **C**aching **I**nterface.\n\n## Motivation\n\nI needed a caching interface that allowed me to change or implement\ndifferent storage backends as needed. I also wanted a caching implementation whose interface closely resembled the Python `collections.MutableMapping` interface, so that I could easily switch between dictionaries and other storage backends.\n\n## Installing\n\nTo install the package run: `pip install yaci`\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "yaci", "package_url": "https://pypi.org/project/yaci/", "platform": "", "project_url": "https://pypi.org/project/yaci/", "project_urls": null, "release_url": "https://pypi.org/project/yaci/0.5.0/", "requires_dist": [ "six" ], "requires_python": "", "summary": "Yet Another Cache Implementation", "version": "0.5.0" }, "last_serial": 4709127, "releases": { "0.5.0": [ { "comment_text": "", "digests": { "md5": "4776a935185e2147426c041059a313cd", "sha256": "732595b85bc461d245108806c5cde7c184c922ee4f17bfccaec57d22af4a0b5e" }, "downloads": -1, "filename": "yaci-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4776a935185e2147426c041059a313cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5441, "upload_time": "2019-01-17T17:53:37", "url": "https://files.pythonhosted.org/packages/2c/46/41a2931ad570e0894858fc78756fd1d3d7ae5851f3017a862745ff184f87/yaci-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e825519f0855dc2b8c87de546283347", "sha256": "bc99829d8f0af05eff6513286a65b0454878a2b4d244578b60f7cb54f29e7a94" }, "downloads": -1, "filename": "yaci-0.5.0.tar.gz", "has_sig": false, "md5_digest": "3e825519f0855dc2b8c87de546283347", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3597, "upload_time": "2019-01-17T17:53:39", "url": "https://files.pythonhosted.org/packages/3e/02/7382b6095bb7862f8a09b3518499a1499d78e8201bd06aee0f41e9abff0a/yaci-0.5.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4776a935185e2147426c041059a313cd", "sha256": "732595b85bc461d245108806c5cde7c184c922ee4f17bfccaec57d22af4a0b5e" }, "downloads": -1, "filename": "yaci-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4776a935185e2147426c041059a313cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5441, "upload_time": "2019-01-17T17:53:37", "url": "https://files.pythonhosted.org/packages/2c/46/41a2931ad570e0894858fc78756fd1d3d7ae5851f3017a862745ff184f87/yaci-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e825519f0855dc2b8c87de546283347", "sha256": "bc99829d8f0af05eff6513286a65b0454878a2b4d244578b60f7cb54f29e7a94" }, "downloads": -1, "filename": "yaci-0.5.0.tar.gz", "has_sig": false, "md5_digest": "3e825519f0855dc2b8c87de546283347", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3597, "upload_time": "2019-01-17T17:53:39", "url": "https://files.pythonhosted.org/packages/3e/02/7382b6095bb7862f8a09b3518499a1499d78e8201bd06aee0f41e9abff0a/yaci-0.5.0.tar.gz" } ] }