Tag sqlite
9 bookmarks have this tag.
9 bookmarks have this tag.
yarr (yet another rss reader) is a web-based feed aggregator which can be used both
as a desktop application and a personal self-hosted server.The app is a single binary with an embedded database (SQLite).
BSD, C, httpd, SQLite: an open software stack for web applications
This module provides go bindings for sqlean. It is compatible with the popular mattn/go-sqlite3 driver.
It is possible to host read-only SQLite databases on static file hosters. Might be useful in some cases.
Антон Жиянов рекламирует свой новый реестр. Там показано, как расширение в Го подключить, может пригодиться потом.
This is true.
SQLite is a wonderful piece of software and it is completely meaningful to use it in a project written in Go even though SQLite itself is in C. Though people has been hitting lots of issues with it, mostly "database is locked" error that seems to appear out of nowhere.
First of all, SQLite allows concurrent readers but only a single writer. Unlike most places where you may encounter some sort of synchronization SQLite does not wait for the write lock to become available - instead it just returns an error, letting the caller deal with it. This is why you are getting "database is locked" errors.