# README
immutable-databases
Immutable databases performance and features analysis
How to configure environment and run
- Run
docker compose up -d
to start the MinIO and immudb container - Open http://localhost:9001/login to login into the MinIO console (user:
minio-user
, password:minio-password
) - Open http://localhost:8080 to access the immudb web console (user:
immudb
, password:immudb
) - Run
go mod tidy
to download dependencies - Run one of the following commands to run the application
# Simple immudb client
go run cmd/immudb/main.go
or
# SQLX client with logging
go run cmd/immudb-sqlx-instrumented/main.go
or
# SQL standard client with logging
go run cmd/immudb-stdlib-instrumented/main.go
or
# SQL standard client with transactions
go run cmd/immudb-stdlib-tx/main.go