Release v1.45.0
✨ Features
🔹 DynamoDB Key-Value Store Support
-
Added full DynamoDB support as a GoFr KVStore implementation.
-
Features include: health checks, connection lifecycle management, JSON helper utilities, structured logging, OpenTelemetry tracing, and mock support for testing.
-
Import the gofr's external driver for DynamoDB:
go get gofr.dev/pkg/gofr/datasource/kv-store/dynamodb@latestHow to use DynamoDB in GoFr:
db := dynamodb.New(dynamodb.Configs{ Table: "gofr-kv-store", Region: "us-east-1", Endpoint: "http://localhost:8000", // For local dev PartitionKeyName: "pk", })
For full documentation, checkout 👉 gofr.dev/docs