# storage-test **Repository Path**: txu2k8/storage-test ## Basic Information - **Project Name**: storage-test - **Description**: Storage Test Toolkits(存储测试工具集),用于长稳测试、场景测试、压力测试等,支持对象存储、文件存储。 golang实现。 - **Primary Language**: Go - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-11 - **Last Updated**: 2026-06-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Storage Test Toolkits #### 介绍 存储测试工具集,用于长稳测试、场景测试、压力测试等。支持S3对象存储、文件存储。 golang实现。 #### 软件架构 软件架构说明 #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx ## 编译 ```shell # windows go env -w GOOS=windows go build -ldflags="-s -w" -gcflags="all=-N -l" -o .\build\storagetest.exe .\main.go # 压缩 upx --best .\build\storagetest.exe # linux go env -w GOOS=linux go build -o ./build/storagetest ./cmd/storagetest/main.go ``` ## rpc command ```shell # https://github.com/protocolbuffers/protobuf/releases 下载 zip包解压 # 生成Go代码: protoc --go_out=. --go-grpc_out=. proto/command.proto ```