{"id":21471788,"url":"https://github.com/amirreza8002/django-valkey","last_synced_at":"2025-04-02T06:07:30.665Z","repository":{"id":255441729,"uuid":"851589271","full_name":"django-utils/django-valkey","owner":"django-utils","description":"a Valkey backend for django","archived":false,"fork":false,"pushed_at":"2025-03-18T03:22:10.000Z","size":410,"stargazers_count":43,"open_issues_count":5,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-18T04:26:25.042Z","etag":null,"topics":["backend","cache","database","django","python","session","valkey","valkey-client"],"latest_commit_sha":null,"homepage":"https://django-valkey.readthedocs.io/en/latest/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/django-utils.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-03T11:23:30.000Z","updated_at":"2025-03-18T03:22:13.000Z","dependencies_parsed_at":"2024-09-15T08:58:11.940Z","dependency_job_id":"98a93649-0473-4736-a0f6-9cd82161ef98","html_url":"https://github.com/django-utils/django-valkey","commit_stats":null,"previous_names":["amirreza8002/django-valkey","django-utils/django-valkey"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-utils%2Fdjango-valkey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-utils%2Fdjango-valkey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-utils%2Fdjango-valkey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-utils%2Fdjango-valkey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/django-utils","download_url":"https://codeload.github.com/django-utils/django-valkey/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246763931,"owners_count":20829799,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","cache","database","django","python","session","valkey","valkey-client"],"created_at":"2024-11-23T09:45:40.933Z","updated_at":"2025-04-02T06:07:30.656Z","avatar_url":"https://github.com/django-utils.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"===============================\nValkey cache backend for Django\n===============================\n\n.. image:: https://img.shields.io/pypi/v/django-valkey?label=PyPi\n   :target: https://pypi.org/project/django-valkey/\n   :alt: Pypi\n\n.. image:: https://img.shields.io/pypi/pyversions/django-valkey.svg\n   :target: https://img/pypi.org/project/django-valkey/\n   :alt: Python versions\n\n.. image:: https://readthedocs.org/projects/django-valkey/badge/?version=latest\u0026style=flat\n   :target: https://django-valkey.readthedocs.io/en/latest/\n   :alt: docs\n\n.. image:: https://static.pepy.tech/badge/django-valkey/month\n   :target: https://pepy.tech/project/django-valkey\n   :alt: downloads/month\n\n.. image:: https://img.shields.io/badge/Published%20on-Django%20Packages-0c3c26\n   :target: https://djangopackages.org/packages/p/django-valkey/\n   :alt: Published on Django Packages\n\nIntroduction\n------------\n\ndjango-valkey is a BSD licensed, full featured Valkey cache and session backend\nfor Django.\n\nthis project is a fork of the wonderful `django-redis \u003chttps://github.com/jazzband/django-redis\u003e`_ project.\nthey wrote all the good codes.\n\nWhy use django-valkey?\n~~~~~~~~~~~~~~~~~~~~~~\n\n- Valkey is a free licenced and well maintained key/value database\n- Uses native valkey-py url notation connection strings\n- Pluggable clients\n- Pluggable parsers\n- Pluggable serializers\n- Primary/secondary support in the default client\n- Comprehensive test suite\n- Used in production in several projects as cache and session storage\n- Supports infinite timeouts\n- Facilities for raw access to Valkey client/connection pool\n- Highly configurable (can emulate memcached exception behavior, for example)\n- Unix sockets supported by default\n\nRequirements\n~~~~~~~~~~~~\n\n- `Python`_ 3.10+  (if you use with libvalkey, they don't support 3.13 yet)\n- `Django`_ 4.2.20+\n- `valkey-py`_ 6.0.2+ (probably works on older versions too)\n- `Valkey server`_ 7.2.6+ (probably works with older versions too)\n\n.. _Python: https://www.python.org/downloads/\n.. _Django: https://www.djangoproject.com/download/\n.. _valkey-py: https://pypi.org/project/valkey/\n.. _Valkey server: https://valkey.io/download\n\nUser guide\n----------\n\nDocumentation\n~~~~~~~~~~~~~\ncheck out our `Docs \u003chttps://django-valkey.readthedocs.io/en/latest/\u003e`_ for a complete explanation\n\nInstallation\n~~~~~~~~~~~~\n\nInstall with pip:\n\n.. code-block:: console\n\n    python -m pip install django-valkey\n\nInstall with c bindings:\n\n.. code-block:: console\n\n    python -m pip install django-valkey[libvalkey]\n\nInstall 3rd party compression\n\n.. code-block:: console\n\n    python -m pip install django-valkey[lz4]\n\n.. code-block:: console\n\n    python -m pip install django-valkey[pyzstd]\n\n.. code-block:: console\n\n    python -m pip install django-valkey[brotli]\n\n\n\n\n\nContribution\n~~~~~~~~~~~~\ncontribution rules are like other projects,being respectful and keeping the ethics.\nalso make an issue before going through troubles of coding, someone might already be doing what you want to do.\n\n\nTodo\n~~~~\n\n1. Fix the CI in cluster branch.\n2. Add cluster to documentations.\n3. Refactor cluster branch.\n\nLicense\n-------\n\n.. code-block:: text\n\n    Copyright (v) 2024 Amirreza Sohrabi far\n    Copyright (c) 2011-2016 Andrey Antukh \u003cniwi@niwi.nz\u003e\n    Copyright (c) 2011 Sean Bleier\n\n    All rights reserved.\n\n    Redistribution and use in source and binary forms, with or without\n    modification, are permitted provided that the following conditions\n    are met:\n    1. Redistributions of source code must retain the above copyright\n       notice, this list of conditions and the following disclaimer.\n    2. Redistributions in binary form must reproduce the above copyright\n       notice, this list of conditions and the following disclaimer in the\n       documentation and/or other materials provided with the distribution.\n    3. The name of the author may not be used to endorse or promote products\n       derived from this software without specific prior written permission.\n\n    THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS`` AND ANY EXPRESS OR\n    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n    IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n    NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n    THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famirreza8002%2Fdjango-valkey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famirreza8002%2Fdjango-valkey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famirreza8002%2Fdjango-valkey/lists"}