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
2 changes: 1 addition & 1 deletion .github/workflows/race-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24.5'
go-version: '1.24.6'
- name: Install dependencies
run: go mod tidy
- name: Run block manager race tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wildcat_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: ['1.24.5']
go-version: ['1.24.6']
runs-on: ${{ matrix.os }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wildcatdb/wildcat/v2

go 1.24.5
go 1.24.6

require go.mongodb.org/mongo-driver v1.17.3

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Wildcat is a high-performance embedded key-value database (or storage engine) wr
- SSTables are immutable BTrees
- Configurable durability levels `None` (fastest), `Partial` (balanced), `Full` (most durable)
- Snapshot-isolated MVCC with timestamp-based reads
- Crash recovery preserves committed transactions and maintains access to incomplete transactions
- Crash recovery preserves committed transactions and maintains access to incomplete transactions if configured with `RecoverUncommittedTxns`
- Automatic multi-threaded background compaction with configurable concurrency
- ACID transaction support with configurable durability guarantees
- Range, prefix, and full iteration support with bidirectional traversal
Expand Down
Loading