Bow - Minimal database for Go powered by Badger

Bow is a simple, fast and reliable embedded database for Go. Recommended for projects that don’t need a full database server like PostgreSQL or MySQL.

I’d like to hear your opinions about the project.

Thanks!

Is it an sql database ?

Bow is an embedded NoSQL database.

Like SQLite, Bow is embedded which means that no server is required – the entire database runs inside your application and is stored as a file or directory.

However, unlike SQLite, Bow doesn’t support SQL statements.

The equivalents of INSERT, SELECT and DELETE are functions called Put, Get and Delete. You can read more about those functions in the README.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.