├── .coveragerc ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature.md ├── dependabot.yml └── workflows │ ├── compatibility.yml │ └── main.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── coredis ├── __init__.py ├── _enum.py ├── _json.py ├── _packer.py ├── _protocols.py ├── _py_311_typing.py ├── _py_312_typing.py ├── _sidecar.py ├── _utils.py ├── _version.pyi ├── cache.py ├── client │ ├── __init__.py │ ├── basic.py │ └── cluster.py ├── commands │ ├── __init__.py │ ├── _key_spec.py │ ├── _utils.py │ ├── _validators.py │ ├── _wrappers.py │ ├── bitfield.py │ ├── constants.py │ ├── core.py │ ├── function.py │ ├── monitor.py │ ├── pubsub.py │ ├── request.py │ ├── script.py │ └── sentinel.py ├── config.py ├── connection.py ├── constants.py ├── credentials.py ├── exceptions.py ├── experimental │ └── __init__.py ├── globals.py ├── modules │ ├── __init__.py │ ├── autocomplete.py │ ├── base.py │ ├── filters.py │ ├── graph.py │ ├── json.py │ ├── response │ │ ├── __init__.py │ │ ├── _callbacks │ │ │ ├── __init__.py │ │ │ ├── autocomplete.py │ │ │ ├── graph.py │ │ │ ├── json.py │ │ │ ├── search.py │ │ │ └── timeseries.py │ │ └── types.py │ ├── search.py │ └── timeseries.py ├── parser.py ├── pipeline.py ├── pool │ ├── __init__.py │ ├── basic.py │ ├── cluster.py │ └── nodemanager.py ├── py.typed ├── recipes │ ├── __init__.py │ ├── credentials │ │ ├── __init__.py │ │ └── iam_provider.py │ └── locks │ │ ├── __init__.py │ │ ├── extend.lua │ │ ├── lua_lock.py │ │ └── release.lua ├── response │ ├── __init__.py │ ├── _callbacks │ │ ├── __init__.py │ │ ├── acl.py │ │ ├── cluster.py │ │ ├── command.py │ │ ├── connection.py │ │ ├── geo.py │ │ ├── hash.py │ │ ├── keys.py │ │ ├── module.py │ │ ├── script.py │ │ ├── sentinel.py │ │ ├── server.py │ │ ├── sets.py │ │ ├── sorted_set.py │ │ ├── streams.py │ │ ├── strings.py │ │ └── vector_sets.py │ ├── _utils.py │ └── types.py ├── retry.py ├── sentinel.py ├── stream.py ├── tokens.py └── typing.py ├── docker-compose.yml ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── custom.css │ ├── api │ ├── bitfield.rst │ ├── caching.rst │ ├── clients.rst │ ├── connections.rst │ ├── credentials.rst │ ├── errors.rst │ ├── index.rst │ ├── modules.rst │ ├── pipeline.rst │ ├── pubsub.rst │ ├── scripting.rst │ ├── streams.rst │ ├── typing.rst │ └── utilities.rst │ ├── compatibility.rst │ ├── conf.py │ ├── glossary.rst │ ├── handbook │ ├── .cluster.rst.swp │ ├── caching.rst │ ├── cluster.rst │ ├── connections.rst │ ├── credentials.rst │ ├── development.rst │ ├── encoding.rst │ ├── index.rst │ ├── modules.rst │ ├── noreply.rst │ ├── optimization.rst │ ├── pipelines.rst │ ├── pubsub.rst │ ├── response.rst │ ├── scripting.rst │ ├── sentinel.rst │ ├── streams.rst │ └── typing.rst │ ├── history.rst │ ├── index.rst │ ├── recipes │ ├── credentials.rst │ ├── index.rst │ └── locks.rst │ ├── release_notes.rst │ └── theme_config.py ├── push-release.sh ├── pyproject.toml ├── pytest.ini ├── scripts ├── RedisJSON.json ├── benchmark.sh ├── bloom.json ├── code_gen.py ├── commands.json ├── countmin.json ├── cuckoo.json ├── github_release_notes.sh ├── graph.json ├── search.json ├── suggestion.json ├── tdigest.json ├── test_data_gen.py ├── timeseries.json └── topk.json ├── tag.sh ├── tests ├── __init__.py ├── cluster │ ├── __init__.py │ ├── conftest.py │ ├── test_cluster_connection_pool.py │ ├── test_node_manager.py │ ├── test_non_atomic_commands.py │ ├── test_pipeline.py │ ├── test_pubsub.py │ └── test_scripting.py ├── commands │ ├── __init__.py │ ├── test_acl.py │ ├── test_bitmap.py │ ├── test_cluster.py │ ├── test_connection.py │ ├── test_functions.py │ ├── test_generic.py │ ├── test_geo.py │ ├── test_hash.py │ ├── test_hyperloglog.py │ ├── test_list.py │ ├── test_modules.py │ ├── test_server.py │ ├── test_set.py │ ├── test_sorted_set.py │ ├── test_streams.py │ ├── test_string.py │ └── test_vector_sets.py ├── conftest.py ├── experimental │ └── __init__.py ├── modules │ ├── __init__.py │ ├── data │ │ ├── city_index.json │ │ ├── vss_queries.json │ │ └── worldcities.csv │ ├── test_autocomplete.py │ ├── test_bloom_filter.py │ ├── test_compatibilty.py │ ├── test_count_min_sketch.py │ ├── test_cuckoo_filter.py │ ├── test_graph.py │ ├── test_json.py │ ├── test_search.py │ ├── test_tdigest.py │ ├── test_timeseries.py │ └── test_topk.py ├── recipes │ ├── __init__.py │ ├── credentials │ │ ├── __init__.py │ │ └── test_elasticache_iam_provider.py │ └── locks │ │ ├── __init__.py │ │ └── test_lua_lock.py ├── test_authentication.py ├── test_cache.py ├── test_client.py ├── test_connection.py ├── test_connection_pool.py ├── test_credentials.py ├── test_encoding.py ├── test_lru_cache.py ├── test_monitor.py ├── test_parsers.py ├── test_pipeline.py ├── test_pubsub.py ├── test_retry.py ├── test_scripting.py ├── test_sentinel.py ├── test_sidecar.py ├── test_stream_consumers.py ├── test_tracking_cache.py ├── test_type_adapters.py ├── test_utils.py └── tls │ ├── ca.crt │ ├── ca.key │ ├── ca.txt │ ├── client.crt │ ├── client.key │ ├── invalid-ca.crt │ ├── invalid-client.crt │ ├── invalid-client.key │ ├── openssl.cnf │ ├── redis.crt │ ├── redis.dh │ ├── redis.key │ ├── server.crt │ └── server.key └── uv.lock /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | coredis/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: alisaifee 2 | open_collective: coredis 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/compatibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.github/workflows/compatibility.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/README.md -------------------------------------------------------------------------------- /coredis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/__init__.py -------------------------------------------------------------------------------- /coredis/_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_enum.py -------------------------------------------------------------------------------- /coredis/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_json.py -------------------------------------------------------------------------------- /coredis/_packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_packer.py -------------------------------------------------------------------------------- /coredis/_protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_protocols.py -------------------------------------------------------------------------------- /coredis/_py_311_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_py_311_typing.py -------------------------------------------------------------------------------- /coredis/_py_312_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_py_312_typing.py -------------------------------------------------------------------------------- /coredis/_sidecar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_sidecar.py -------------------------------------------------------------------------------- /coredis/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/_utils.py -------------------------------------------------------------------------------- /coredis/_version.pyi: -------------------------------------------------------------------------------- 1 | __version__: str 2 | -------------------------------------------------------------------------------- /coredis/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/cache.py -------------------------------------------------------------------------------- /coredis/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/client/__init__.py -------------------------------------------------------------------------------- /coredis/client/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/client/basic.py -------------------------------------------------------------------------------- /coredis/client/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/client/cluster.py -------------------------------------------------------------------------------- /coredis/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/__init__.py -------------------------------------------------------------------------------- /coredis/commands/_key_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/_key_spec.py -------------------------------------------------------------------------------- /coredis/commands/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/_utils.py -------------------------------------------------------------------------------- /coredis/commands/_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/_validators.py -------------------------------------------------------------------------------- /coredis/commands/_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/_wrappers.py -------------------------------------------------------------------------------- /coredis/commands/bitfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/bitfield.py -------------------------------------------------------------------------------- /coredis/commands/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/constants.py -------------------------------------------------------------------------------- /coredis/commands/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/core.py -------------------------------------------------------------------------------- /coredis/commands/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/function.py -------------------------------------------------------------------------------- /coredis/commands/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/monitor.py -------------------------------------------------------------------------------- /coredis/commands/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/pubsub.py -------------------------------------------------------------------------------- /coredis/commands/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/request.py -------------------------------------------------------------------------------- /coredis/commands/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/script.py -------------------------------------------------------------------------------- /coredis/commands/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/commands/sentinel.py -------------------------------------------------------------------------------- /coredis/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/config.py -------------------------------------------------------------------------------- /coredis/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/connection.py -------------------------------------------------------------------------------- /coredis/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/constants.py -------------------------------------------------------------------------------- /coredis/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/credentials.py -------------------------------------------------------------------------------- /coredis/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/exceptions.py -------------------------------------------------------------------------------- /coredis/experimental/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | -------------------------------------------------------------------------------- /coredis/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/globals.py -------------------------------------------------------------------------------- /coredis/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/__init__.py -------------------------------------------------------------------------------- /coredis/modules/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/autocomplete.py -------------------------------------------------------------------------------- /coredis/modules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/base.py -------------------------------------------------------------------------------- /coredis/modules/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/filters.py -------------------------------------------------------------------------------- /coredis/modules/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/graph.py -------------------------------------------------------------------------------- /coredis/modules/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/json.py -------------------------------------------------------------------------------- /coredis/modules/response/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coredis/modules/response/_callbacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coredis/modules/response/_callbacks/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/response/_callbacks/autocomplete.py -------------------------------------------------------------------------------- /coredis/modules/response/_callbacks/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/response/_callbacks/graph.py -------------------------------------------------------------------------------- /coredis/modules/response/_callbacks/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/response/_callbacks/json.py -------------------------------------------------------------------------------- /coredis/modules/response/_callbacks/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/response/_callbacks/search.py -------------------------------------------------------------------------------- /coredis/modules/response/_callbacks/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/response/_callbacks/timeseries.py -------------------------------------------------------------------------------- /coredis/modules/response/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/response/types.py -------------------------------------------------------------------------------- /coredis/modules/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/search.py -------------------------------------------------------------------------------- /coredis/modules/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/modules/timeseries.py -------------------------------------------------------------------------------- /coredis/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/parser.py -------------------------------------------------------------------------------- /coredis/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/pipeline.py -------------------------------------------------------------------------------- /coredis/pool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/pool/__init__.py -------------------------------------------------------------------------------- /coredis/pool/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/pool/basic.py -------------------------------------------------------------------------------- /coredis/pool/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/pool/cluster.py -------------------------------------------------------------------------------- /coredis/pool/nodemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/pool/nodemanager.py -------------------------------------------------------------------------------- /coredis/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coredis/recipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coredis/recipes/credentials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/recipes/credentials/__init__.py -------------------------------------------------------------------------------- /coredis/recipes/credentials/iam_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/recipes/credentials/iam_provider.py -------------------------------------------------------------------------------- /coredis/recipes/locks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/recipes/locks/__init__.py -------------------------------------------------------------------------------- /coredis/recipes/locks/extend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/recipes/locks/extend.lua -------------------------------------------------------------------------------- /coredis/recipes/locks/lua_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/recipes/locks/lua_lock.py -------------------------------------------------------------------------------- /coredis/recipes/locks/release.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/recipes/locks/release.lua -------------------------------------------------------------------------------- /coredis/response/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/__init__.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/__init__.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/acl.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/cluster.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/command.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/connection.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/geo.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/hash.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/keys.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/module.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/script.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/sentinel.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/server.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/sets.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/sorted_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/sorted_set.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/streams.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/strings.py -------------------------------------------------------------------------------- /coredis/response/_callbacks/vector_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_callbacks/vector_sets.py -------------------------------------------------------------------------------- /coredis/response/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/_utils.py -------------------------------------------------------------------------------- /coredis/response/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/response/types.py -------------------------------------------------------------------------------- /coredis/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/retry.py -------------------------------------------------------------------------------- /coredis/sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/sentinel.py -------------------------------------------------------------------------------- /coredis/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/stream.py -------------------------------------------------------------------------------- /coredis/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/tokens.py -------------------------------------------------------------------------------- /coredis/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/coredis/typing.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/api/bitfield.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/bitfield.rst -------------------------------------------------------------------------------- /docs/source/api/caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/caching.rst -------------------------------------------------------------------------------- /docs/source/api/clients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/clients.rst -------------------------------------------------------------------------------- /docs/source/api/connections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/connections.rst -------------------------------------------------------------------------------- /docs/source/api/credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/credentials.rst -------------------------------------------------------------------------------- /docs/source/api/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/errors.rst -------------------------------------------------------------------------------- /docs/source/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/index.rst -------------------------------------------------------------------------------- /docs/source/api/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/modules.rst -------------------------------------------------------------------------------- /docs/source/api/pipeline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/pipeline.rst -------------------------------------------------------------------------------- /docs/source/api/pubsub.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/pubsub.rst -------------------------------------------------------------------------------- /docs/source/api/scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/scripting.rst -------------------------------------------------------------------------------- /docs/source/api/streams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/streams.rst -------------------------------------------------------------------------------- /docs/source/api/typing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/typing.rst -------------------------------------------------------------------------------- /docs/source/api/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/api/utilities.rst -------------------------------------------------------------------------------- /docs/source/compatibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/compatibility.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/glossary.rst -------------------------------------------------------------------------------- /docs/source/handbook/.cluster.rst.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/.cluster.rst.swp -------------------------------------------------------------------------------- /docs/source/handbook/caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/caching.rst -------------------------------------------------------------------------------- /docs/source/handbook/cluster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/cluster.rst -------------------------------------------------------------------------------- /docs/source/handbook/connections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/connections.rst -------------------------------------------------------------------------------- /docs/source/handbook/credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/credentials.rst -------------------------------------------------------------------------------- /docs/source/handbook/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/development.rst -------------------------------------------------------------------------------- /docs/source/handbook/encoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/encoding.rst -------------------------------------------------------------------------------- /docs/source/handbook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/index.rst -------------------------------------------------------------------------------- /docs/source/handbook/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/modules.rst -------------------------------------------------------------------------------- /docs/source/handbook/noreply.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/noreply.rst -------------------------------------------------------------------------------- /docs/source/handbook/optimization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/optimization.rst -------------------------------------------------------------------------------- /docs/source/handbook/pipelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/pipelines.rst -------------------------------------------------------------------------------- /docs/source/handbook/pubsub.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/pubsub.rst -------------------------------------------------------------------------------- /docs/source/handbook/response.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/response.rst -------------------------------------------------------------------------------- /docs/source/handbook/scripting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/scripting.rst -------------------------------------------------------------------------------- /docs/source/handbook/sentinel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/sentinel.rst -------------------------------------------------------------------------------- /docs/source/handbook/streams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/streams.rst -------------------------------------------------------------------------------- /docs/source/handbook/typing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/handbook/typing.rst -------------------------------------------------------------------------------- /docs/source/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/history.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/recipes/credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/recipes/credentials.rst -------------------------------------------------------------------------------- /docs/source/recipes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/recipes/index.rst -------------------------------------------------------------------------------- /docs/source/recipes/locks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/recipes/locks.rst -------------------------------------------------------------------------------- /docs/source/release_notes.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/source/theme_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/docs/source/theme_config.py -------------------------------------------------------------------------------- /push-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/push-release.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/RedisJSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/RedisJSON.json -------------------------------------------------------------------------------- /scripts/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/benchmark.sh -------------------------------------------------------------------------------- /scripts/bloom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/bloom.json -------------------------------------------------------------------------------- /scripts/code_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/code_gen.py -------------------------------------------------------------------------------- /scripts/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/commands.json -------------------------------------------------------------------------------- /scripts/countmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/countmin.json -------------------------------------------------------------------------------- /scripts/cuckoo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/cuckoo.json -------------------------------------------------------------------------------- /scripts/github_release_notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/github_release_notes.sh -------------------------------------------------------------------------------- /scripts/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/graph.json -------------------------------------------------------------------------------- /scripts/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/search.json -------------------------------------------------------------------------------- /scripts/suggestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/suggestion.json -------------------------------------------------------------------------------- /scripts/tdigest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/tdigest.json -------------------------------------------------------------------------------- /scripts/test_data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/test_data_gen.py -------------------------------------------------------------------------------- /scripts/timeseries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/timeseries.json -------------------------------------------------------------------------------- /scripts/topk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/scripts/topk.json -------------------------------------------------------------------------------- /tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tag.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cluster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cluster/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/cluster/conftest.py -------------------------------------------------------------------------------- /tests/cluster/test_cluster_connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/cluster/test_cluster_connection_pool.py -------------------------------------------------------------------------------- /tests/cluster/test_node_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/cluster/test_node_manager.py -------------------------------------------------------------------------------- /tests/cluster/test_non_atomic_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/cluster/test_non_atomic_commands.py -------------------------------------------------------------------------------- /tests/cluster/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/cluster/test_pipeline.py -------------------------------------------------------------------------------- /tests/cluster/test_pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/cluster/test_pubsub.py -------------------------------------------------------------------------------- /tests/cluster/test_scripting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/cluster/test_scripting.py -------------------------------------------------------------------------------- /tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/test_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_acl.py -------------------------------------------------------------------------------- /tests/commands/test_bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_bitmap.py -------------------------------------------------------------------------------- /tests/commands/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_cluster.py -------------------------------------------------------------------------------- /tests/commands/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_connection.py -------------------------------------------------------------------------------- /tests/commands/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_functions.py -------------------------------------------------------------------------------- /tests/commands/test_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_generic.py -------------------------------------------------------------------------------- /tests/commands/test_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_geo.py -------------------------------------------------------------------------------- /tests/commands/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_hash.py -------------------------------------------------------------------------------- /tests/commands/test_hyperloglog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_hyperloglog.py -------------------------------------------------------------------------------- /tests/commands/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_list.py -------------------------------------------------------------------------------- /tests/commands/test_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_modules.py -------------------------------------------------------------------------------- /tests/commands/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_server.py -------------------------------------------------------------------------------- /tests/commands/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_set.py -------------------------------------------------------------------------------- /tests/commands/test_sorted_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_sorted_set.py -------------------------------------------------------------------------------- /tests/commands/test_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_streams.py -------------------------------------------------------------------------------- /tests/commands/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_string.py -------------------------------------------------------------------------------- /tests/commands/test_vector_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/commands/test_vector_sets.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/experimental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/data/city_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/data/city_index.json -------------------------------------------------------------------------------- /tests/modules/data/vss_queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/data/vss_queries.json -------------------------------------------------------------------------------- /tests/modules/data/worldcities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/data/worldcities.csv -------------------------------------------------------------------------------- /tests/modules/test_autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_autocomplete.py -------------------------------------------------------------------------------- /tests/modules/test_bloom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_bloom_filter.py -------------------------------------------------------------------------------- /tests/modules/test_compatibilty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_compatibilty.py -------------------------------------------------------------------------------- /tests/modules/test_count_min_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_count_min_sketch.py -------------------------------------------------------------------------------- /tests/modules/test_cuckoo_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_cuckoo_filter.py -------------------------------------------------------------------------------- /tests/modules/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_graph.py -------------------------------------------------------------------------------- /tests/modules/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_json.py -------------------------------------------------------------------------------- /tests/modules/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_search.py -------------------------------------------------------------------------------- /tests/modules/test_tdigest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_tdigest.py -------------------------------------------------------------------------------- /tests/modules/test_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_timeseries.py -------------------------------------------------------------------------------- /tests/modules/test_topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/modules/test_topk.py -------------------------------------------------------------------------------- /tests/recipes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recipes/credentials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recipes/credentials/test_elasticache_iam_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/recipes/credentials/test_elasticache_iam_provider.py -------------------------------------------------------------------------------- /tests/recipes/locks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recipes/locks/test_lua_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/recipes/locks/test_lua_lock.py -------------------------------------------------------------------------------- /tests/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_authentication.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_connection.py -------------------------------------------------------------------------------- /tests/test_connection_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_connection_pool.py -------------------------------------------------------------------------------- /tests/test_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_credentials.py -------------------------------------------------------------------------------- /tests/test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_encoding.py -------------------------------------------------------------------------------- /tests/test_lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_lru_cache.py -------------------------------------------------------------------------------- /tests/test_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_monitor.py -------------------------------------------------------------------------------- /tests/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_parsers.py -------------------------------------------------------------------------------- /tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_pipeline.py -------------------------------------------------------------------------------- /tests/test_pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_pubsub.py -------------------------------------------------------------------------------- /tests/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_retry.py -------------------------------------------------------------------------------- /tests/test_scripting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_scripting.py -------------------------------------------------------------------------------- /tests/test_sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_sentinel.py -------------------------------------------------------------------------------- /tests/test_sidecar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_sidecar.py -------------------------------------------------------------------------------- /tests/test_stream_consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_stream_consumers.py -------------------------------------------------------------------------------- /tests/test_tracking_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_tracking_cache.py -------------------------------------------------------------------------------- /tests/test_type_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_type_adapters.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/ca.crt -------------------------------------------------------------------------------- /tests/tls/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/ca.key -------------------------------------------------------------------------------- /tests/tls/ca.txt: -------------------------------------------------------------------------------- 1 | 35EF919824B8DFBE68EC6860AB34C681883BCD26 2 | -------------------------------------------------------------------------------- /tests/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/client.crt -------------------------------------------------------------------------------- /tests/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/client.key -------------------------------------------------------------------------------- /tests/tls/invalid-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/invalid-ca.crt -------------------------------------------------------------------------------- /tests/tls/invalid-client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/invalid-client.crt -------------------------------------------------------------------------------- /tests/tls/invalid-client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/invalid-client.key -------------------------------------------------------------------------------- /tests/tls/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/openssl.cnf -------------------------------------------------------------------------------- /tests/tls/redis.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/redis.crt -------------------------------------------------------------------------------- /tests/tls/redis.dh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/redis.dh -------------------------------------------------------------------------------- /tests/tls/redis.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/redis.key -------------------------------------------------------------------------------- /tests/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/server.crt -------------------------------------------------------------------------------- /tests/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/tests/tls/server.key -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alisaifee/coredis/HEAD/uv.lock --------------------------------------------------------------------------------