├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── benchmark-spec-request.md │ ├── bug_report.md │ └── config.yml ├── release-drafter-config.yml └── workflows │ ├── publish-pypi.yml │ ├── release-drafter.yml │ ├── tox.yml │ └── validate-spec-fields.yml ├── .gitignore ├── LICENSE ├── README.rst ├── Readme.md ├── __init__.py ├── arch-diagram.png ├── commands-priority.json ├── commands.json ├── dev_requirements.txt ├── groups.json ├── poetry.lock ├── pyproject.toml ├── redis_benchmarks_specification ├── __api__ │ ├── Readme.md │ ├── __init__.py │ ├── api.py │ └── app.py ├── __builder__ │ ├── Readme.md │ ├── __init__.py │ ├── builder.py │ └── schema.py ├── __cli__ │ ├── __init__.py │ ├── args.py │ ├── cli.py │ └── stats.py ├── __common__ │ ├── __init__.py │ ├── builder_schema.py │ ├── env.py │ ├── github.py │ ├── package.py │ ├── runner.py │ ├── spec.py │ ├── suppress_warnings.py │ └── timeseries.py ├── __compare__ │ ├── __init__.py │ ├── args.py │ └── compare.py ├── __init__.py ├── __runner__ │ ├── __init__.py │ ├── args.py │ ├── remote_profiling.py │ └── runner.py ├── __self_contained_coordinator__ │ ├── __init__.py │ ├── args.py │ ├── artifacts.py │ ├── build_info.py │ ├── clients.py │ ├── cpuset.py │ ├── docker.py │ ├── post_processing.py │ ├── prepopulation.py │ ├── runners.py │ └── self_contained_coordinator.py ├── __setups__ │ ├── __init__.py │ └── topologies.py ├── __spec__ │ ├── __init__.py │ ├── args.py │ └── cli.py ├── __watchdog__ │ ├── __init__.py │ ├── args.py │ └── watchdog.py ├── commands │ ├── __init__.py │ └── commands.py ├── setups │ ├── builders │ │ ├── gcc:15.2.0-amd64-debian-bookworm-default.yml │ │ └── gcc:15.2.0-arm64-debian-bookworm-default.yml │ ├── platforms │ │ └── aws-ec2-1node-c5.4xlarge.yml │ └── topologies │ │ └── topologies.yml ├── test-suites │ ├── defaults.yml │ ├── generate.py │ ├── memtier_benchmark-100Kkeys-hash-hexpire-50-fields-10B-values.yml │ ├── memtier_benchmark-100Kkeys-hash-hexpireat-50-fields-10B-values.yml │ ├── memtier_benchmark-100Kkeys-hash-hgetall-50-fields-100B-values.yml │ ├── memtier_benchmark-100Kkeys-hash-hgetex-50-fields-10B-values.yml │ ├── memtier_benchmark-100Kkeys-hash-hgetex-persist-50-fields-10B-values.yml │ ├── memtier_benchmark-100Kkeys-hash-hpexpire-50-fields-10B-values.yml │ ├── memtier_benchmark-100Kkeys-hash-hpexpireat-50-fields-10B-values.yml │ ├── memtier_benchmark-100Kkeys-hash-htll-50-fields-10B-values.yml │ ├── memtier_benchmark-100Kkeys-load-hash-20-fields-with-1B-values-pipeline-30.yml │ ├── memtier_benchmark-100Kkeys-load-hash-50-fields-with-1000B-values.yml │ ├── memtier_benchmark-100Kkeys-load-hash-50-fields-with-100B-values.yml │ ├── memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-expiration.yml │ ├── memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-long-expiration.yml │ ├── memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-short-expiration.yml │ ├── memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values.yml │ ├── memtier_benchmark-10Kkeys-load-hash-50-fields-with-10000B-values.yml │ ├── memtier_benchmark-10Kkeys-load-list-rpush-bulkload-pipeline-50.yml │ ├── memtier_benchmark-10Kkeys-load-list-with-10B-values-pipeline-50.yml │ ├── memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values-pipeline-10.yml │ ├── memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values.yml │ ├── memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values-pipeline-10.yml │ ├── memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values.yml │ ├── memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml │ ├── memtier_benchmark-1Kkeys-hash-listpack-500-fields-update-20-fields-with-1B-to-64B-values.yml │ ├── memtier_benchmark-1Mkeys-100B-expire-use-case.yml │ ├── memtier_benchmark-1Mkeys-10B-expire-use-case.yml │ ├── memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml │ ├── memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml │ ├── memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml │ ├── memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml │ ├── memtier_benchmark-1Mkeys-bitmap-getbit-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-exists-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-expire-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-expireat-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-pexpire-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-scan-count-500-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-scan-cursor-count-500-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-scan-cursor-count-5000-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-scan-cursor-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-scan-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-scan-type-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-touch-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-generic-ttl-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-hash-hexists.yml │ ├── memtier_benchmark-1Mkeys-hash-hget-hgetall-hkeys-hvals-with-100B-values.yml │ ├── memtier_benchmark-1Mkeys-hash-hgetall-50-fields-10B-values.yml │ ├── memtier_benchmark-1Mkeys-hash-hincrby.yml │ ├── memtier_benchmark-1Mkeys-hash-hincrbyfloat.yml │ ├── memtier_benchmark-1Mkeys-hash-hmget-5-fields-with-100B-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-hash-transactions-multi-exec-pipeline-20.yml │ ├── memtier_benchmark-1Mkeys-list-lpop-rpop-with-100B-values.yml │ ├── memtier_benchmark-1Mkeys-list-lpop-rpop-with-10B-values.yml │ ├── memtier_benchmark-1Mkeys-list-lpop-rpop-with-1KiB-values.yml │ ├── memtier_benchmark-1Mkeys-list-rpoplpush-with-10B-values.yml │ ├── memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values.yml │ ├── memtier_benchmark-1Mkeys-load-hash-hmset-5-fields-with-1000B-values.yml │ ├── memtier_benchmark-1Mkeys-load-list-rpush-with-10B-values.yml │ ├── memtier_benchmark-1Mkeys-load-list-with-100B-values.yml │ ├── memtier_benchmark-1Mkeys-load-list-with-10B-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-list-with-10B-values.yml │ ├── memtier_benchmark-1Mkeys-load-list-with-1KiB-values.yml │ ├── memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits.yml │ ├── memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-set-intset-with-100-elements.yml │ ├── memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values.yml │ ├── memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-100B-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-100B-values.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100-nokeyprefix.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-50.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-500.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-10B-values.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-1KiB-values-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-1KiB-values.yml │ ├── memtier_benchmark-1Mkeys-load-string-with-20KiB-values.yml │ ├── memtier_benchmark-1Mkeys-load-zset-listpack-with-100-elements-double-score.yml │ ├── memtier_benchmark-1Mkeys-load-zset-with-10-elements-double-score.yml │ ├── memtier_benchmark-1Mkeys-load-zset-with-10-elements-int-score.yml │ ├── memtier_benchmark-1Mkeys-string-append-1-100B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-append-1-100B.yml │ ├── memtier_benchmark-1Mkeys-string-decr.yml │ ├── memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-get-100B.yml │ ├── memtier_benchmark-1Mkeys-string-get-10B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml │ ├── memtier_benchmark-1Mkeys-string-get-10B-pipeline-100.yml │ ├── memtier_benchmark-1Mkeys-string-get-10B-pipeline-50.yml │ ├── memtier_benchmark-1Mkeys-string-get-10B-pipeline-500.yml │ ├── memtier_benchmark-1Mkeys-string-get-10B.yml │ ├── memtier_benchmark-1Mkeys-string-get-1KiB-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-get-1KiB.yml │ ├── memtier_benchmark-1Mkeys-string-get-32B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-get-32B.yml │ ├── memtier_benchmark-1Mkeys-string-incr-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-incrby.yml │ ├── memtier_benchmark-1Mkeys-string-incrbyfloat-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-incrbyfloat.yml │ ├── memtier_benchmark-1Mkeys-string-int-encoding-strlen-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-mget-1KiB.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B.yml │ ├── memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml │ ├── memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-setex-100B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-1.yml │ ├── memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-1.yml │ ├── memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-1.yml │ ├── memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml │ ├── memtier_benchmark-1Mkeys-string-setrange-100B.yml │ ├── memtier_benchmark-1key-100M-bits-bitmap-bitcount.yml │ ├── memtier_benchmark-1key-1Billion-bits-bitmap-bitcount.yml │ ├── memtier_benchmark-1key-geo-2-elements-geopos.yml │ ├── memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geodist-pipeline-10.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geodist.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geohash-pipeline-10.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geohash.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geopos-pipeline-10.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geopos.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-bybox.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-pipeline-10.yml │ ├── memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat.yml │ ├── memtier_benchmark-1key-hash-1K-fields-hgetall-pipeline-10.yml │ ├── memtier_benchmark-1key-hash-1K-fields-hgetall.yml │ ├── memtier_benchmark-1key-hash-hscan-1K-fields-100B-values-cursor-count-1000.yml │ ├── memtier_benchmark-1key-hash-hscan-1K-fields-10B-values-cursor-count-100.yml │ ├── memtier_benchmark-1key-hash-hscan-1K-fields-10B-values.yml │ ├── memtier_benchmark-1key-hash-hscan-50-fields-10B-values.yml │ ├── memtier_benchmark-1key-list-10-elements-lrange-all-elements-pipeline-10.yml │ ├── memtier_benchmark-1key-list-10-elements-lrange-all-elements.yml │ ├── memtier_benchmark-1key-list-100-elements-int-7bit-uint-lrange-all-elements-pipeline-10.yml │ ├── memtier_benchmark-1key-list-100-elements-int-lrange-all-elements-pipeline-10.yml │ ├── memtier_benchmark-1key-list-100-elements-llen-pipeline-10.yml │ ├── memtier_benchmark-1key-list-100-elements-lrange-all-elements-pipeline-10.yml │ ├── memtier_benchmark-1key-list-100-elements-lrange-all-elements.yml │ ├── memtier_benchmark-1key-list-10K-elements-lindex-integer.yml │ ├── memtier_benchmark-1key-list-10K-elements-lindex-string-pipeline-10.yml │ ├── memtier_benchmark-1key-list-10K-elements-lindex-string.yml │ ├── memtier_benchmark-1key-list-10K-elements-linsert-lrem-integer.yml │ ├── memtier_benchmark-1key-list-10K-elements-linsert-lrem-string.yml │ ├── memtier_benchmark-1key-list-10K-elements-lpos-integer.yml │ ├── memtier_benchmark-1key-list-10K-elements-lpos-string.yml │ ├── memtier_benchmark-1key-list-1K-elements-lrange-all-elements-pipeline-10.yml │ ├── memtier_benchmark-1key-list-1K-elements-lrange-all-elements.yml │ ├── memtier_benchmark-1key-list-2K-elements-quicklist-lrange-all-elements-longs.yml │ ├── memtier_benchmark-1key-load-hash-1K-fields-with-5B-values.yml │ ├── memtier_benchmark-1key-load-zset-with-5-elements-parsing-float-score.yml │ ├── memtier_benchmark-1key-load-zset-with-5-elements-parsing-hexa-score.yml │ ├── memtier_benchmark-1key-pfadd-4KB-values-pipeline-10.yml │ ├── memtier_benchmark-1key-set-10-elements-smembers-pipeline-10.yml │ ├── memtier_benchmark-1key-set-10-elements-smembers.yml │ ├── memtier_benchmark-1key-set-10-elements-smismember.yml │ ├── memtier_benchmark-1key-set-100-elements-sismember-is-a-member.yml │ ├── memtier_benchmark-1key-set-100-elements-sismember-not-a-member.yml │ ├── memtier_benchmark-1key-set-100-elements-smembers.yml │ ├── memtier_benchmark-1key-set-100-elements-smismember.yml │ ├── memtier_benchmark-1key-set-100-elements-sscan.yml │ ├── memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance.yml │ ├── memtier_benchmark-1key-set-10M-elements-srem-50pct-chance.yml │ ├── memtier_benchmark-1key-set-1K-elements-smembers.yml │ ├── memtier_benchmark-1key-set-1K-elements-sscan-cursor-count-100.yml │ ├── memtier_benchmark-1key-set-1K-elements-sscan.yml │ ├── memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance.yml │ ├── memtier_benchmark-1key-set-200K-elements-sadd-constant.yml │ ├── memtier_benchmark-1key-set-2M-elements-sadd-increasing.yml │ ├── memtier_benchmark-1key-zincrby-1M-elements-pipeline-1.yml │ ├── memtier_benchmark-1key-zrank-100K-elements-pipeline-1.yml │ ├── memtier_benchmark-1key-zrank-10M-elements-pipeline-1.yml │ ├── memtier_benchmark-1key-zrank-1M-elements-pipeline-1.yml │ ├── memtier_benchmark-1key-zrem-5M-elements-pipeline-1.yml │ ├── memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-1.yml │ ├── memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-10.yml │ ├── memtier_benchmark-1key-zrevrank-1M-elements-pipeline-1.yml │ ├── memtier_benchmark-1key-zset-10-elements-zrange-all-elements-long-scores.yml │ ├── memtier_benchmark-1key-zset-10-elements-zrange-all-elements.yml │ ├── memtier_benchmark-1key-zset-100-elements-zrange-all-elements.yml │ ├── memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements-long-scores.yml │ ├── memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements.yml │ ├── memtier_benchmark-1key-zset-100-elements-zscan.yml │ ├── memtier_benchmark-1key-zset-1K-elements-zrange-all-elements.yml │ ├── memtier_benchmark-1key-zset-1K-elements-zscan.yml │ ├── memtier_benchmark-1key-zset-1M-elements-zcard-pipeline-10.yml │ ├── memtier_benchmark-1key-zset-1M-elements-zremrangebyscore-pipeline-10.yml │ ├── memtier_benchmark-1key-zset-1M-elements-zrevrange-5-elements.yml │ ├── memtier_benchmark-1key-zset-1M-elements-zrevrange-withscores-5-elements-pipeline-10.yml │ ├── memtier_benchmark-1key-zset-1M-elements-zscore-pipeline-10.yml │ ├── memtier_benchmark-1key-zset-600K-elements-zrangestore-1K-elements.yml │ ├── memtier_benchmark-1key-zset-600K-elements-zrangestore-300K-elements.yml │ ├── memtier_benchmark-1key-zset-listpack-zrank-100-elements-pipeline-1.yml │ ├── memtier_benchmark-2keys-lua-eval-hset-expire.yml │ ├── memtier_benchmark-2keys-lua-evalsha-hset-expire.yml │ ├── memtier_benchmark-2keys-set-10-100-elements-sdiff.yml │ ├── memtier_benchmark-2keys-set-10-100-elements-sinter.yml │ ├── memtier_benchmark-2keys-set-10-100-elements-sunion.yml │ ├── memtier_benchmark-2keys-stream-5-entries-xread-all-entries-pipeline-10.yml │ ├── memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml │ ├── memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunion.yml │ ├── memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunionstore.yml │ ├── memtier_benchmark-3Mkeys-load-string-with-512B-values-pipeline-10.yml │ ├── memtier_benchmark-3Mkeys-load-string-with-512B-values.yml │ ├── memtier_benchmark-3Mkeys-string-get-with-1KiB-values-400_conns.yml │ ├── memtier_benchmark-3Mkeys-string-get-with-1KiB-values-40_conns.yml │ ├── memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-2000_conns.yml │ ├── memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-400_conns.yml │ ├── memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-40_conns.yml │ ├── memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-400_conns.yml │ ├── memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-2000_conns.yml │ ├── memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-400_conns.yml │ ├── memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-5200_conns.yml │ ├── memtier_benchmark-3Mkeys-string-mixed-50-50-with-512B-values-with-expiration-pipeline-10-400_conns.yml │ ├── memtier_benchmark-connection-hello-pipeline-10.yml │ ├── memtier_benchmark-connection-hello.yml │ ├── memtier_benchmark-multiple-hll-pfcount-100B-values.yml │ ├── memtier_benchmark-multiple-hll-pfmerge-100B-values.yml │ ├── memtier_benchmark-nokeys-connection-ping-pipeline-10.yml │ ├── memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-100-subscribers.yml │ ├── memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-1000-subscribers.yml │ ├── memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-5000-subscribers.yml │ ├── memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-50K-subscribers-5k-conns.yml │ ├── memtier_benchmark-nokeys-pubsub-publish-1K-channels-10B-no-subscribers.yml │ ├── memtier_benchmark-nokeys-server-time-pipeline-10.yml │ ├── memtier_benchmark-playbook-leaderboard-top-10.yml │ ├── memtier_benchmark-playbook-leaderboard-top-100.yml │ ├── memtier_benchmark-playbook-leaderboard-top-1000.yml │ ├── memtier_benchmark-playbook-rate-limiting-lua-100k-sessions.yml │ ├── memtier_benchmark-playbook-realtime-analytics-membership-pipeline-10.yml │ ├── memtier_benchmark-playbook-realtime-analytics-membership.yml │ ├── memtier_benchmark-playbook-session-caching-hash-100k-sessions.yml │ ├── memtier_benchmark-playbook-session-caching-json-100k-sessions.yml │ ├── memtier_benchmark-playbook-session-caching-string-100k-sessions.yml │ ├── memtier_benchmark-playbook-session-storage-100k-sessions.yml │ ├── memtier_benchmark-playbook-session-storage-1k-sessions.yml │ ├── memtier_benchmark-stream-10M-entries-xread-count-100.yml │ ├── memtier_benchmark-stream-10M-entries-xreadgroup-count-100-noack.yml │ ├── memtier_benchmark-stream-10M-entries-xreadgroup-count-100.yml │ ├── memtier_benchmark-stream-concurrent-xadd-xreadgroup-70-30.yml │ └── template.txt └── vector-search-test-suites │ └── vector_db_benchmark_test.yml ├── spec-logo.png ├── tox.ini └── utils ├── __init__.py ├── ai_dataset_naming.py ├── create-hset.py ├── create-intset.py ├── create-zset-300-elements.py ├── generate_latency_benchmarks.py ├── generate_memory_requirements.py ├── summary.py ├── test-requirements.txt └── tests ├── __init__.py ├── test_api.py ├── test_app.py ├── test_builder.py ├── test_builder_schema.py ├── test_cli.py ├── test_data ├── api_builder_common.py ├── event_webhook_labelled_pr.json ├── event_webhook_pushed_repo.json ├── icc-2021.3.0-amd64-ubuntu18.04-libc.yml └── test-suites │ ├── defaults.yml │ ├── generic-touch.yml │ ├── memtier_benchmark-1Mkeys-100B-expire-use-case-with-variant.yml │ ├── memtier_benchmark-1Mkeys-100B-expire-use-case.yml │ ├── memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml │ ├── redis-benchmark-full-suite-1Mkeys-100B.yml │ ├── test-memtier-dockerhub-iothreads.yml │ ├── test-memtier-dockerhub.yml │ └── topologies.yml ├── test_runner.py ├── test_schema.py ├── test_self_contained_coordinator.py ├── test_self_contained_coordinator_memtier.py ├── test_spec.py └── test_topologies.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/benchmark-spec-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.github/ISSUE_TEMPLATE/benchmark-spec-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/release-drafter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.github/release-drafter-config.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.github/workflows/validate-spec-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.github/workflows/validate-spec-fields.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/Readme.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/arch-diagram.png -------------------------------------------------------------------------------- /commands-priority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/commands-priority.json -------------------------------------------------------------------------------- /commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/commands.json -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/groups.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/pyproject.toml -------------------------------------------------------------------------------- /redis_benchmarks_specification/__api__/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__api__/Readme.md -------------------------------------------------------------------------------- /redis_benchmarks_specification/__api__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__api__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__api__/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__api__/api.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__api__/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__api__/app.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__builder__/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__builder__/Readme.md -------------------------------------------------------------------------------- /redis_benchmarks_specification/__builder__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__builder__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__builder__/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__builder__/builder.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__builder__/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__builder__/schema.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__cli__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__cli__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__cli__/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__cli__/args.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__cli__/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__cli__/cli.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__cli__/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__cli__/stats.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/builder_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/builder_schema.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/env.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/github.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/package.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/runner.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/spec.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/suppress_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/suppress_warnings.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__common__/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__common__/timeseries.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__compare__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__compare__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__compare__/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__compare__/args.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__compare__/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__compare__/compare.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__runner__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__runner__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__runner__/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__runner__/args.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__runner__/remote_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__runner__/remote_profiling.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__runner__/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__runner__/runner.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/args.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/build_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/build_info.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/clients.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/cpuset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/cpuset.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/docker.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/post_processing.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/prepopulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/prepopulation.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/runners.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__setups__/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis_benchmarks_specification/__setups__/topologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__setups__/topologies.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__spec__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__spec__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__spec__/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__spec__/args.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__spec__/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__spec__/cli.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__watchdog__/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__watchdog__/__init__.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__watchdog__/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__watchdog__/args.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/__watchdog__/watchdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/__watchdog__/watchdog.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis_benchmarks_specification/commands/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/commands/commands.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/setups/builders/gcc:15.2.0-amd64-debian-bookworm-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/setups/builders/gcc:15.2.0-amd64-debian-bookworm-default.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/setups/builders/gcc:15.2.0-arm64-debian-bookworm-default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/setups/builders/gcc:15.2.0-arm64-debian-bookworm-default.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/setups/platforms/aws-ec2-1node-c5.4xlarge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/setups/platforms/aws-ec2-1node-c5.4xlarge.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/setups/topologies/topologies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/setups/topologies/topologies.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/defaults.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/generate.py -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpire-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpire-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpireat-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpireat-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetall-50-fields-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetall-50-fields-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetex-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetex-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetex-persist-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetex-persist-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpire-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpire-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpireat-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpireat-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-htll-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-htll-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-20-fields-with-1B-values-pipeline-30.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-20-fields-with-1B-values-pipeline-30.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-1000B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-1000B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-expiration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-expiration.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-long-expiration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-long-expiration.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-short-expiration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-short-expiration.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-hash-50-fields-with-10000B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-hash-50-fields-with-10000B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-list-rpush-bulkload-pipeline-50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-list-rpush-bulkload-pipeline-50.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-list-with-10B-values-pipeline-50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-list-with-10B-values-pipeline-50.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Kkeys-hash-listpack-500-fields-update-20-fields-with-1B-to-64B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Kkeys-hash-listpack-500-fields-update-20-fields-with-1B-to-64B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-bitmap-getbit-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-bitmap-getbit-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-exists-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-exists-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expire-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expire-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expireat-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expireat-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-pexpire-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-pexpire-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-count-500-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-count-500-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-500-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-500-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-5000-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-5000-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-type-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-type-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-touch-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-touch-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-ttl-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-ttl-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hexists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hexists.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hget-hgetall-hkeys-hvals-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hget-hgetall-hkeys-hvals-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hgetall-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hgetall-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hincrby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hincrby.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hincrbyfloat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hincrbyfloat.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hmget-5-fields-with-100B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hmget-5-fields-with-100B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-transactions-multi-exec-pipeline-20.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-transactions-multi-exec-pipeline-20.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-1KiB-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-1KiB-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-rpoplpush-with-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-rpoplpush-with-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-hmset-5-fields-with-1000B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-hmset-5-fields-with-1000B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-rpush-with-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-rpush-with-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-10B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-10B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-1KiB-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-1KiB-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100-nokeyprefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100-nokeyprefix.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-50.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-500.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-500.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-1KiB-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-1KiB-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-1KiB-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-1KiB-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-20KiB-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-20KiB-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-listpack-with-100-elements-double-score.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-listpack-with-100-elements-double-score.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-double-score.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-double-score.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-int-score.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-int-score.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-50.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-500.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-500.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incr-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incr-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-int-encoding-strlen-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-int-encoding-strlen-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setex-100B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setex-100B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-100M-bits-bitmap-bitcount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-100M-bits-bitmap-bitcount.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-1Billion-bits-bitmap-bitcount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-1Billion-bits-bitmap-bitcount.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geopos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geopos.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geohash-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geohash-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geohash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geohash.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geopos-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geopos-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geopos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geopos.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-bybox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-bybox.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-1K-fields-hgetall-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-1K-fields-hgetall-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-1K-fields-hgetall.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-1K-fields-hgetall.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-100B-values-cursor-count-1000.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-100B-values-cursor-count-1000.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-10B-values-cursor-count-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-10B-values-cursor-count-100.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-50-fields-10B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-50-fields-10B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elements-lrange-all-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elements-lrange-all-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elements-lrange-all-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elements-lrange-all-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-int-7bit-uint-lrange-all-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-int-7bit-uint-lrange-all-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-int-lrange-all-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-int-lrange-all-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-llen-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-llen-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-integer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-integer.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-string-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-string-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-string.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-string.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-integer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-integer.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-string.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-string.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-integer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-integer.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-string.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-string.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-1K-elements-lrange-all-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-1K-elements-lrange-all-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-1K-elements-lrange-all-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-1K-elements-lrange-all-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-2K-elements-quicklist-lrange-all-elements-longs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-2K-elements-quicklist-lrange-all-elements-longs.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-hash-1K-fields-with-5B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-hash-1K-fields-with-5B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-zset-with-5-elements-parsing-float-score.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-zset-with-5-elements-parsing-float-score.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-zset-with-5-elements-parsing-hexa-score.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-zset-with-5-elements-parsing-hexa-score.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-pfadd-4KB-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-pfadd-4KB-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smismember.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smismember.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-is-a-member.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-is-a-member.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-not-a-member.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-not-a-member.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smembers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smembers.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smismember.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smismember.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sscan.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-srem-50pct-chance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-srem-50pct-chance.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-smembers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-smembers.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan-cursor-count-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan-cursor-count-100.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-200K-elements-sadd-constant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-200K-elements-sadd-constant.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-2M-elements-sadd-increasing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-2M-elements-sadd-increasing.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zincrby-1M-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zincrby-1M-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-100K-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-100K-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-10M-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-10M-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-1M-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-1M-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrem-5M-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrem-5M-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrank-1M-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrank-1M-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-10-elements-zrange-all-elements-long-scores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-10-elements-zrange-all-elements-long-scores.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-10-elements-zrange-all-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-10-elements-zrange-all-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrange-all-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrange-all-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements-long-scores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements-long-scores.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zscan.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zrange-all-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zrange-all-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zscan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zscan.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zcard-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zcard-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zremrangebyscore-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zremrangebyscore-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zrevrange-5-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zrevrange-5-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zrevrange-withscores-5-elements-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zrevrange-withscores-5-elements-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zscore-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zscore-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-1K-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-1K-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-300K-elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-300K-elements.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-listpack-zrank-100-elements-pipeline-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-listpack-zrank-100-elements-pipeline-1.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-eval-hset-expire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-eval-hset-expire.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-evalsha-hset-expire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-evalsha-hset-expire.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sdiff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sdiff.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sinter.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sunion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sunion.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunion.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunionstore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunionstore.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-400_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-400_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-40_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-40_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-2000_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-2000_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-400_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-400_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-40_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-40_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-400_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-400_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-2000_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-2000_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-400_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-400_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-5200_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-5200_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-50-50-with-512B-values-with-expiration-pipeline-10-400_conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-50-50-with-512B-values-with-expiration-pipeline-10-400_conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-multiple-hll-pfcount-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-multiple-hll-pfcount-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-multiple-hll-pfmerge-100B-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-multiple-hll-pfmerge-100B-values.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-connection-ping-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-connection-ping-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-100-subscribers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-100-subscribers.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-1000-subscribers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-1000-subscribers.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-5000-subscribers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-5000-subscribers.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-50K-subscribers-5k-conns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-50K-subscribers-5k-conns.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-publish-1K-channels-10B-no-subscribers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-publish-1K-channels-10B-no-subscribers.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-100.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-1000.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-1000.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-rate-limiting-lua-100k-sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-rate-limiting-lua-100k-sessions.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership-pipeline-10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership-pipeline-10.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-hash-100k-sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-hash-100k-sessions.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-json-100k-sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-json-100k-sessions.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-string-100k-sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-string-100k-sessions.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-100k-sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-100k-sessions.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xread-count-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xread-count-100.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100-noack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100-noack.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/memtier_benchmark-stream-concurrent-xadd-xreadgroup-70-30.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/memtier_benchmark-stream-concurrent-xadd-xreadgroup-70-30.yml -------------------------------------------------------------------------------- /redis_benchmarks_specification/test-suites/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/test-suites/template.txt -------------------------------------------------------------------------------- /redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml -------------------------------------------------------------------------------- /spec-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/spec-logo.png -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/tox.ini -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/ai_dataset_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/ai_dataset_naming.py -------------------------------------------------------------------------------- /utils/create-hset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/create-hset.py -------------------------------------------------------------------------------- /utils/create-intset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/create-intset.py -------------------------------------------------------------------------------- /utils/create-zset-300-elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/create-zset-300-elements.py -------------------------------------------------------------------------------- /utils/generate_latency_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/generate_latency_benchmarks.py -------------------------------------------------------------------------------- /utils/generate_memory_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/generate_memory_requirements.py -------------------------------------------------------------------------------- /utils/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/summary.py -------------------------------------------------------------------------------- /utils/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/test-requirements.txt -------------------------------------------------------------------------------- /utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_api.py -------------------------------------------------------------------------------- /utils/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_app.py -------------------------------------------------------------------------------- /utils/tests/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_builder.py -------------------------------------------------------------------------------- /utils/tests/test_builder_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_builder_schema.py -------------------------------------------------------------------------------- /utils/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_cli.py -------------------------------------------------------------------------------- /utils/tests/test_data/api_builder_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/api_builder_common.py -------------------------------------------------------------------------------- /utils/tests/test_data/event_webhook_labelled_pr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/event_webhook_labelled_pr.json -------------------------------------------------------------------------------- /utils/tests/test_data/event_webhook_pushed_repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/event_webhook_pushed_repo.json -------------------------------------------------------------------------------- /utils/tests/test_data/icc-2021.3.0-amd64-ubuntu18.04-libc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/icc-2021.3.0-amd64-ubuntu18.04-libc.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/defaults.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/generic-touch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/generic-touch.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case-with-variant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case-with-variant.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/redis-benchmark-full-suite-1Mkeys-100B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/redis-benchmark-full-suite-1Mkeys-100B.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/test-memtier-dockerhub-iothreads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/test-memtier-dockerhub-iothreads.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/test-memtier-dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/test-memtier-dockerhub.yml -------------------------------------------------------------------------------- /utils/tests/test_data/test-suites/topologies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_data/test-suites/topologies.yml -------------------------------------------------------------------------------- /utils/tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_runner.py -------------------------------------------------------------------------------- /utils/tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_schema.py -------------------------------------------------------------------------------- /utils/tests/test_self_contained_coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_self_contained_coordinator.py -------------------------------------------------------------------------------- /utils/tests/test_self_contained_coordinator_memtier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_self_contained_coordinator_memtier.py -------------------------------------------------------------------------------- /utils/tests/test_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_spec.py -------------------------------------------------------------------------------- /utils/tests/test_topologies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/redis-benchmarks-specification/HEAD/utils/tests/test_topologies.py --------------------------------------------------------------------------------