模糊匹配新增kvIdFuzzyCache,查询时缓存,增删改时直接整个失效,底层kvDoc直接复用 #566
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Merge check | |
| on: [push, pull_request] | |
| jobs: | |
| etcd-storage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: 1.18 | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v1 | |
| - name: UT for etcd | |
| run: | | |
| time docker run -d -p 2379:2379 --name etcd quay.io/coreos/etcd:v3.5.15 etcd -name etcd --advertise-client-urls http://0.0.0.0:2379 --listen-client-urls http://0.0.0.0:2379 | |
| while ! nc -z 127.0.0.1 2379; do | |
| sleep 1 | |
| done | |
| export TEST_DB_KIND=etcd | |
| export TEST_DB_URI=127.0.0.1:2379 | |
| time go test $(go list ./... | grep -v mongo | grep -v third_party | grep -v examples) | |
| embedded-etcd-storage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: 1.18 | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v1 | |
| - name: UT for embedded etcd | |
| run: | | |
| export TEST_DB_KIND=embedded_etcd | |
| go test $(go list ./... | grep -v mongo | grep -v third_party | grep -v examples) |