Skip to content

Optimize client to support batch write buffering during high concurrency #390

Optimize client to support batch write buffering during high concurrency

Optimize client to support batch write buffering during high concurrency #390

Workflow file for this run

name: BuildTest
on:
push:
branches: [ master, feature/* ]
pull_request:
branches: [ master, feature/* ]
jobs:
build-test:
runs-on: ubuntu-latest
timeout-minutes: 3
strategy:
matrix:
go-version: ['1.19', '1.22', '1.24', '1.25', '1.26']
steps:
- uses: actions/checkout@v2
- name: Install redis-cli
run: |
sudo apt-get update
sudo apt-get -y install redis
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build
- name: Test
run: ./run-tests