8db5cfe7e1
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
Core storage: hash MemTable, WAL group commit, L0 compaction rebuild, reader-writer lock, and a global StorageGate so HTTP workers and TCP share the LSM safely under multi-thread access. Schema: durable CREATE/ALTER/DROP under _schema:tables:* with full LSM restore on open. Executor types/values/schema split into query/exec/. Wire protocol: switch default MM to ARC — ORC cycle collector segfaulted after ~20 async INSERTs. Fair multi-tier benchmarks (SQLite/HTTP/wire/PG) and honesty docs for mixed-tier comparisons.
69 lines
1.1 KiB
Plaintext
69 lines
1.1 KiB
Plaintext
# Build
|
|
build/
|
|
nimcache/
|
|
nimblecache/
|
|
*.out
|
|
|
|
# Binaries (compiled test executables)
|
|
tests/test_all
|
|
tests/stress_test
|
|
tests/test_lock
|
|
tests/test_minimal
|
|
tests/tla_faithfulness
|
|
tests/fuzz_test
|
|
tests/prop_test
|
|
benchmarks/bench_all
|
|
benchmarks/compare
|
|
clients/nim/tests/test_client
|
|
src/baradadb
|
|
src/barabadb/client/client
|
|
src/barabadb/core/raft
|
|
src/barabadb/core/backup
|
|
|
|
# Temp
|
|
*.tmp
|
|
*.log
|
|
|
|
# Data
|
|
data/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# External references
|
|
GEL/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Rust
|
|
clients/rust/target/
|
|
|
|
# Nim compiled binaries
|
|
clients/nim/src/baradb/client
|
|
src/barabadb/storage/compaction
|
|
src/barabadb/query/executor
|
|
tests/join_tests
|
|
*.tar.gz
|
|
tests/nimforum_smoke_test
|
|
|
|
benchmark_results.json
|
|
pg_benchmark_results.json
|
|
fair_benchmark_results.json
|
|
benchmarks/bench_all
|
|
benchmarks/compare
|
|
.qwen/
|
|
|
|
# Compiled test / module binaries
|
|
tests/test_schema_persist
|
|
tests/test_storage_hardening
|
|
tests/test_wire_insert_stress
|
|
src/barabadb/storage/lsm
|
|
src/barabadb/storage/wal
|
|
src/barabadb/storage/btree
|
|
src/barabadb/storage/gate
|
|
clients/nim/tests/test_pool
|
|
clients/nim/tests/test_wire
|