mirror of
https://github.com/fluencelabs/redis
synced 2025-07-31 00:11:56 +00:00
Config: Add quicklist, remove old list options
This removes: - list-max-ziplist-entries - list-max-ziplist-value This adds: - list-max-ziplist-size - list-compress-depth Also updates config file with new sections and updates tests to use quicklist settings instead of old list settings.
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
start_server {
|
||||
tags {"sort"}
|
||||
overrides {
|
||||
"list-max-ziplist-value" 16
|
||||
"list-max-ziplist-entries" 32
|
||||
"list-max-ziplist-size" 32
|
||||
"set-max-intset-entries" 32
|
||||
}
|
||||
} {
|
||||
|
@@ -1,8 +1,7 @@
|
||||
start_server {
|
||||
tags {"list"}
|
||||
overrides {
|
||||
"list-max-ziplist-value" 16
|
||||
"list-max-ziplist-entries" 4
|
||||
"list-max-ziplist-size" 4
|
||||
}
|
||||
} {
|
||||
source "tests/unit/type/list-common.tcl"
|
||||
|
@@ -1,8 +1,7 @@
|
||||
start_server {
|
||||
tags {list ziplist}
|
||||
overrides {
|
||||
"list-max-ziplist-value" 200000
|
||||
"list-max-ziplist-entries" 16
|
||||
"list-max-ziplist-size" 16
|
||||
}
|
||||
} {
|
||||
test {Explicit regression for a list bug} {
|
||||
|
@@ -1,8 +1,7 @@
|
||||
start_server {
|
||||
tags {"list"}
|
||||
overrides {
|
||||
"list-max-ziplist-value" 16
|
||||
"list-max-ziplist-entries" 5
|
||||
"list-max-ziplist-size" 5
|
||||
}
|
||||
} {
|
||||
source "tests/unit/type/list-common.tcl"
|
||||
|
Reference in New Issue
Block a user