undermoon
Mordern Redis Cluster solution for easy operation.
File Explorer
Download Latest Version (.zip)- ci.yaml
- config.py
- gen_hosts.py
- monitor_all_redis.py
- random_test.py
- render_compose.py
- requirements.txt
- test_stack_mem_broker.yml.j2
- USAGE.md
- utils.py
- goredis_test.go
- utils.go
- go.mod
- go.sum
- App.java
- JedisTest.java
- LettuceTest.java
- RedissionTest.java
- Utils.java
- build.gradle.kts
- gradle-wrapper.properties
- .gitattributes
- .gitignore
- gradlew
- gradlew.bat
- settings.gradle.kts
- redis_py_cluster_test.py
- requirements.txt
- coordinator.toml
- mem-broker.toml
- server-proxy.toml
- max_latency_connection_number.svg
- max_latency_pipeline_number.svg
- throughput_connection_number.svg
- throughput_pipeline_number.svg
- active_redirection.md
- architecture.svg
- best_practice.md
- broker_external_storage.md
- broker_http_api.md
- chunk.md
- chunk.svg
- chunk_allocation.txt
- command_table.json
- command_table.md
- development.md
- docker_compose_example.md
- generate_command_table.py
- mem_broker_replica.md
- memory_broker_api.md
- meta_command.md
- migration_benchmark.md
- migration_local_test.md
- performance.md
- redis_cluster_protocol.md
- redis_cluster_protocol.svg
- redis_cluster_proxy.svg
- set_up_manually.md
- slots_migration.md
- undermoon-logo-raw.svg
- undermoon-logo.svg
- undermoon_server_proxy.svg
- coordinator1.toml
- coordinator2.toml
- init.sh
- mem-broker.toml
- server_proxy1.toml
- server_proxy2.toml
- server_proxy3.toml
- server_proxy4.toml
- server_proxy5.toml
- server_proxy6.toml
- broker_external_http_storage.py
- docker-compose-mem-broker-example.yml
- docker-compose-mem-broker.yml
- Dockerfile-undermoon-release
- Dockerfile-undermoon-test
- run_broker.sh
- run_coordinator.sh
- run_proxy.sh
- redis.conf
- redis.conf
- redis.conf
- redis.conf
- dkclean.sh
- dkkill.sh
- dkrmi.sh
- dksh.sh
- init_single_server_proxy.sh
- loop_migration_test.sh
- mem_store_v1_to_v2.py
- readme_test.sh
- run_redis_cluster.sh
- run_two_shards.sh
- coordinator.rs
- mem_broker.rs
- server_proxy.rs
- epoch.rs
- external.rs
- migrate.rs
- mod.rs
- ordered_proxy.rs
- persistence.rs
- query.rs
- replication.rs
- resource.rs
- service.rs
- storage.rs
- store.rs
- update.rs
- utils.rs
- atomic_lock.rs
- batch.rs
- biatomic.rs
- cluster.rs
- config.rs
- future_group.rs
- mod.rs
- proto.rs
- resp_execution.rs
- response.rs
- slot_lock.rs
- track.rs
- try_chunks.rs
- utils.rs
- version.rs
- yield_now.rs
- api.rs
- broker.rs
- core.rs
- detector.rs
- http_mani_broker.rs
- http_meta_broker.rs
- migration.rs
- mod.rs
- recover.rs
- service.rs
- sync.rs
- manager.rs
- mod.rs
- scan_migration.rs
- scan_task.rs
- stats.rs
- task.rs
- client.rs
- codec.rs
- decoder.rs
- encoder.rs
- fp.rs
- mod.rs
- packet.rs
- resp.rs
- stateless.rs
- backend.rs
- blocking.rs
- cluster.rs
- command.rs
- compress.rs
- executor.rs
- manager.rs
- migration_backend.rs
- mod.rs
- reply.rs
- sender.rs
- service.rs
- session.rs
- slot.rs
- slowlog.rs
- table.rs
- manager.rs
- mod.rs
- redis_replicator.rs
- replicator.rs
- lib.rs
- connection.rs
- proxy_manager_test.rs
- redis_client.rs
- .dockerignore
- .gitignore
- Cargo.lock
- Cargo.toml
- LICENSE
- Makefile
- README.md
- rust-toolchain
- rustfmt.toml
# Installation Guide
1. Get the code
git clone https://github.com/doyoubi/undermoon
Downloads the entire project code from GitHub to your computer.
cd undermoon
Moves into the project folder you just downloaded.
2. Gradle (Java/Kotlin)
Medium RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java/Kotlin projects.
- Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd clienttest/java/app
This project's files live in a subfolder, so move into it first.
./gradlew build
Builds the project using Gradle.
A BUILD SUCCESSFUL message means it worked. The output is created under build/.
3. Python
EasyPrerequisites
pip install -r chaostest/requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
python <μ€νν νμΌλͺ
>.py # READMEμμ μ νν μ€ν νμΌλͺ
μ νμΈνμΈμ
Runs the Python script (or module).
If it runs without errors and prints output in the terminal, it worked.
4. Go
MediumPrerequisites
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd clienttest/golang
This project's files live in a subfolder, so move into it first.
go build ./...
Compiles the Go program into an executable.
go run .
Runs the Go program directly without a separate build step.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
5. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
6. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
