Golang Go语言中发现个pure go的sqlite驱动 源于tg 群群友的推荐 文档:https://pkg.go.dev/modernc.org/sqlite而且还有相应的 gorm 的驱动:https://github.com/cloudquery/sqlite 这样似乎用不到 cgo 了,而且 goreleaser 什么的好像都能跑 有没有人用过这个库,性能什么的差别大吗?如果不错的话感觉挺香的 ...
nodeper5楼•3 小时前
The feature which I am happy to do a PR for is to remove the use of the existing CGO based SQLite implementation with a pure Golang based implementation here. https://github.com/zombiezen/go-sqlite Motivation The CGO libraries are a HUGE pain with Windows machines and even other machines...
import ( "gorm.io/driver/sqlite" // Sqlite driver based on GGO // "github.com/glebarez/sqlite" // Pure go SQLite driver, checkout https://github.com/glebarez/sqlite for details "gorm.io/gorm" ) // github.com/mattn/go-sqlite3 db, err := gorm.Open(sqlite.Open("gorm.db"), &go...
SQLite(uses cgo):https://github.com/mxk/go-sqlite SQLite: (uses cgo):https://github.com/rsc/sqlite SQLite: (pure go):https://modernc.org/sqlite SQL over REST:https://github.com/adaptant-labs/go-sql-rest-driver Sybase SQL Anywhere:https://github.com/a-palchikov/sqlago ...
modernc,modernc.org/sqlite, a pure Go solution. This is a newer library, based on the SQLite C code re-written in Go. ncruces,github.com/ncruces/go-sqlite3, a pure Go solution based on WASM (?). sqinn,github.com/cvilsmeier/sqinn-go, a solution without CGO. It usesgithub.com/...
Purego, a library for calling C functions from Go without Cgo just merged commit c1f3f96 which adds support for the Cgo runtime on macOS written entirely in Go. This commit is inspired by the work of @notti! srlehn, Trisia, DrSensor, and weitzj reacted with thumbs up emoji 标签: go...
https://github.com/PureWhiteWu/fastrand https://github.com/olivia-ai/olivia https://github.com/ronaksoft/rony https://github.com/a8m/syncmap https://github.com/golangci/golangci-lint https://github.com/gobwas/ws https://github.com/casbin/casdoor https://github.com/alexzorin/authy http...
Sqinn-Go - SQLite with pure Go. NoSQL Databases aerospike-client-go - Aerospike client in Go language. arangolite - Lightweight golang driver for ArangoDB. asc - Datastore Connectivity for Aerospike for go. forestdb - Go bindings for ForestDB. go-couchbase - Couchbase client in Go. go-...
go-lua - A Lua VM in pure Go DCLua - Go Lua Compiler and VM otto - JavaScript 解释器 goja - ECMAScript 5.1(+) 实现 v8go - Execute JavaScript from Go gpython - Python Interpreter on Go Grumpy - 转换 Python 为 Go 代码,谷歌开源 starlark-go - Starlark in Go avo - x86 汇编程序构建...