diff options
| author | chrislu <chris.lu@gmail.com> | 2025-02-26 17:48:44 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-02-26 17:48:44 -0800 |
| commit | 9bd4c47299a2c2c63c2e817af718efdbf12b6362 (patch) | |
| tree | c41ea7321f1ec76e0110d6b3291dbb077f622542 /weed | |
| parent | 4613186e8a4238586837ef9640b6c2f2ac0e52d6 (diff) | |
| download | seaweedfs-9bd4c47299a2c2c63c2e817af718efdbf12b6362.tar.xz seaweedfs-9bd4c47299a2c2c63c2e817af718efdbf12b6362.zip | |
update redis support status
Diffstat (limited to 'weed')
| -rw-r--r-- | weed/command/scaffold/filer.toml | 34 | ||||
| -rw-r--r-- | weed/filer/redis/README.md | 5 | ||||
| -rw-r--r-- | weed/filer/redis3/README.md | 4 |
3 files changed, 9 insertions, 34 deletions
diff --git a/weed/command/scaffold/filer.toml b/weed/command/scaffold/filer.toml index ea30a3e37..7e61e8e88 100644 --- a/weed/command/scaffold/filer.toml +++ b/weed/command/scaffold/filer.toml @@ -200,40 +200,6 @@ routeByLatency = false # This changes the data layout. Only add new directories. Removing/Updating will cause data loss. superLargeDirectories = [] -[redis_lua] -enabled = false -address = "localhost:6379" -password = "" -database = 0 -# This changes the data layout. Only add new directories. Removing/Updating will cause data loss. -superLargeDirectories = [] - -[redis_lua_sentinel] -enabled = false -addresses = ["172.22.12.7:26379","172.22.12.8:26379","172.22.12.9:26379"] -masterName = "master" -username = "" -password = "" -database = 0 - -[redis_lua_cluster] -enabled = false -addresses = [ - "localhost:30001", - "localhost:30002", - "localhost:30003", - "localhost:30004", - "localhost:30005", - "localhost:30006", -] -password = "" -# allows reads from slave servers or the master, but all writes still go to the master -readOnly = false -# automatically use the closest Redis server for reads -routeByLatency = false -# This changes the data layout. Only add new directories. Removing/Updating will cause data loss. -superLargeDirectories = [] - [etcd] enabled = false servers = "localhost:2379" diff --git a/weed/filer/redis/README.md b/weed/filer/redis/README.md new file mode 100644 index 000000000..5fff2dbf7 --- /dev/null +++ b/weed/filer/redis/README.md @@ -0,0 +1,5 @@ +Deprecated by redis2. + +This implementaiton uses unsorted set. For example, add a directory child via SAdd. + +Redis2 moves to sorted set. Adding a child uses ZAddNX.
\ No newline at end of file diff --git a/weed/filer/redis3/README.md b/weed/filer/redis3/README.md new file mode 100644 index 000000000..fc696e1d3 --- /dev/null +++ b/weed/filer/redis3/README.md @@ -0,0 +1,4 @@ +Desuppported. + +This implementation attempts to use skip list. +Did not get any report on actual benefits. |
