Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,14 @@ jobs:
if: steps.check.outputs.pr == 'true'
run: npm run benchmark:replace:readme -- merged.benchmark

- name: Update website benchmark data
if: steps.check.outputs.pr == 'true'
run: npm run benchmark:replace:website -- merged.benchmark

- name: Lint and format
if: steps.check.outputs.pr == 'true'
run: npm run lint

- name: Create pull request
if: steps.check.outputs.pr == 'true'
uses: peter-evans/create-pull-request@v8
Expand All @@ -131,4 +139,5 @@ jobs:
- Ran **19** benchmark cases independently
- Merged all results into a single report
- Updated the benchmark section in all `README*.md` files (localized)
- Updated website benchmark data (`benchmarks`, `home`, i18n)
labels: benchmark,automated
4 changes: 4 additions & 0 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
echo "pr=false" >> "$GITHUB_OUTPUT"
fi

- name: Lint and format
if: steps.check.outputs.pr == 'true'
run: npm run lint

- name: Create pull request
if: steps.check.outputs.pr == 'true'
uses: peter-evans/create-pull-request@v8
Expand Down
184 changes: 94 additions & 90 deletions README.ko.md

Large diffs are not rendered by default.

172 changes: 88 additions & 84 deletions README.md

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@vcms-io/solidis",
"version": "0.3.0",
"author": "Jay Lee <jay@vendit.co.kr>",
"description": "High-performance, SOLID-structured RESP client for Redis and other RESP-compatible servers",
"description": "The fastest Redis client for Node.js. Zero dependencies, 2x+ faster than ioredis, battle-tested in production.",
"repository": {
"type": "git",
"url": "https://github.com/vcms-io/solidis.git"
Expand All @@ -13,15 +13,18 @@
"prepack": "npm run build",
"cleanup": "npm run --silent node:ts ./scripts/cleanup.ts",
"build": "npm run cleanup && tsc && npm run node:ts ./scripts/build.ts",
"lint": "concurrently --raw \"biome check --write\" \"tsc --noEmit\" \"tsc --noEmit --project scripts/tsconfig.json\"",
"format": "biome format --write",
"lint": "concurrently --raw \"npm run format\" \"npm run format:markdown\" \"npm run check\"",
"format": "biome check --write",
"format:markdown": "prettier --write \"**/*.md\" --prose-wrap preserve --single-quote --embedded-language-formatting off",
"check": "concurrently --raw \"tsc --noEmit\" \"tsc --noEmit --project scripts/tsconfig.json\"",
"node:ts": "node --import=./scripts/esm/register.js",
"benchmark:ioredis": "npm run --silent node:ts ./scripts/benchmarks/ioredis/benchmark.ts --",
"benchmark:ioredis:snapshot": "cross-env SOLIDIS_BENCH_EXPORT_SNAPSHOT=./ioredis.benchmark npm run --silent node:ts ./scripts/benchmarks/ioredis/benchmark.ts --",
"benchmark:redis": "npm run --silent node:ts ./scripts/benchmarks/redis/benchmark.ts --",
"benchmark:redis:snapshot": "cross-env SOLIDIS_BENCH_EXPORT_SNAPSHOT=./redis.benchmark npm run --silent node:ts ./scripts/benchmarks/redis/benchmark.ts --",
"benchmark:merge": "npm run --silent node:ts ./scripts/benchmarks/shared/markdown/merge.ts --",
"benchmark:replace:readme": "npm run --silent node:ts ./scripts/benchmarks/shared/markdown/replace.readme.ts --",
"benchmark:replace:website": "npm run --silent node:ts ./scripts/benchmarks/shared/markdown/replace.website.ts --",
"test": "concurrently --raw --max-processes 1 \"npm run test:commands\" \"npm run test:client\"",
"test:commands": "node --import=./scripts/esm/register.js --test ./scripts/tests/commands/*.test.ts",
"test:client": "node --import=./scripts/esm/register.js --test --test-concurrency=1 ./scripts/tests/client/**/*.test.ts",
Expand Down Expand Up @@ -91,6 +94,7 @@
"cross-env": "^10.1.0",
"esbuild": "^0.28.1",
"ioredis": "^5.11.1",
"prettier": "^3.8.4",
"redis": "^6.0.0",
"typescript": "^6.0.3"
}
Expand Down
Loading