Categorygithub.com/AntonioMartinezFernandez/immutable-databases
repository
0.0.0-20241104060906-ea59135758bf
Repository: https://github.com/antoniomartinezfernandez/immutable-databases.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

immutable-databases

Immutable databases performance and features analysis

How to configure environment and run

  1. Run docker compose up -d to start the MinIO and immudb container
  2. Open http://localhost:9001/login to login into the MinIO console (user: minio-user, password: minio-password)
  3. Open http://localhost:8080 to access the immudb web console (user: immudb, password: immudb)
  4. Run go mod tidy to download dependencies
  5. 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

Resources