This directory contains examples for using the ToonDB Go SDK.
- Go 1.21+ installed.
- ToonDB Go SDK:
github.com/toondb/toondb-go
toondb-golang-cd basic_kv/ # Basic key-value operations
├── sql_check/ # SQL operations and data integrity
├── rag/ # Complete RAG (Retrieval-Augmented Generation) system
└── README.md
Located in basic_kv/. Demonstrates how to open a database, put, get, and scan keys.
cd basic_kv
go run main.goLocation: rag/. Demonstrates SQL table creation and data integrity verification.
cd sql_check
go run main.go