# aerospike **Repository Path**: liwen_test_sync_group/aerospike ## Basic Information - **Project Name**: aerospike - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-24 - **Last Updated**: 2026-04-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Datastore Connectivity for Aerospike(aerospike) [![Aerospike database/sql driver](https://goreportcard.com/badge/github.com/viant/aerospike)](https://goreportcard.com/report/github.com/viant/aerospike) [![GoDoc](https://godoc.org/github.com/viant/aerospike?status.svg)](https://godoc.org/github.com/viant/aerospike) This library is compatible with Go 1.17+ Please refer to [`CHANGELOG.md`](CHANGELOG.md) if you encounter breaking changes. - [Usage](#Usage) - [License](#License) - [Credits and Acknowledgements](#Credits-and-Acknowledgements) ## Usage: The following is a very simple example of CRUD operations ```go package main import ( "database/sql" "log" _ "github.com/viant/aerospike" ) type Participant struct { Name string Splits []float64 } func main() { db, err := sql.Open("aerospike", "aerospike:///namespace") if err != nil { log.Fatal(err) } defer db.Close() ``` ## License The source code is made available under the terms of the Apache License, Version 2, as stated in the file `LICENSE`. Individual files may be made available under their own specific license, all compatible with Apache License, Version 2. Please see individual files for details. ## Credits and Acknowledgements **Library Author:** **Contributors:**