Squirrel VS go-memdb

Compare Squirrel vs go-memdb and see what are their differences.

Squirrel

Fluent SQL generation for golang (by Masterminds)

go-memdb

Golang in-memory database built on immutable radix trees (by hashicorp)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
Squirrel go-memdb
52 3
6,505 3,070
1.7% 1.7%
2.8 3.6
about 2 months ago 2 months ago
Go Go
GNU General Public License v3.0 or later Mozilla Public License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Squirrel

Posts with mentions or reviews of Squirrel. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-27.
  • Building RESTful API with Hexagonal Architecture in Go
    21 projects | dev.to | 27 Sep 2023
    It uses Gin as the HTTP framework and PostgreSQL as the database with pgx as the driver and Squirrel as the query builder. It also utilizes Redis as the caching layer with go-redis as the client.
  • Working with postgres in GO.
    2 projects | /r/golang | 3 Jul 2023
    I would add Squirrel to PGX https://github.com/Masterminds/squirrel
  • how to avoid writing dreadful SQL statements
    4 projects | /r/golang | 23 May 2023
    I have written about this before, and my thoughts always settle on using a query builder. I've built a simple one, which works for what I need, but there are more feature complete ones out there such as squirrel. I've also written about how you can implement a simple CRUD library for database interactions using generics and query building to have that nice middle-ground between an ORM and query building.
  • How do I enable filters for the user without writing redundant SQL?
    1 project | /r/golang | 15 May 2023
    Now for the dynamic queries you have to be really careful to prevent SQL injections, there are bunch of different ways to do it but I typically recommend using a package such as squirrel that lets you do this easily, you use it to generate the plain SQL you need (and then use sqlx, database/sql, pgx or whatever you prefer) or use it directly querying the database directly.
  • Best sqlc alternative for dynamic queries?
    8 projects | /r/golang | 15 May 2023
    Here are 2 options for you * https://github.com/huandu/go-sqlbuilder * https://github.com/Masterminds/squirrel
  • Golang RESTAPI boilerplate repository
    7 projects | /r/golang | 2 May 2023
    https://www.reddit.com/r/golang/comments/vq98ud/what_sql_library_are_you_using/ Jet havn't used but is one that looks promising! Otherwise I'm one of the purests, db/sql and https://github.com/Masterminds/squirrel
  • Why is Raw SQL preferred over ORM in go?
    7 projects | /r/golang | 15 Apr 2023
    I think he means an sql builder like squirrel. This allows dynamic queries, but more important you can reuse function that build a where clause so you can get a count and query with that.
  • Does Go, has something similar to Laravel eloquent (ORM) ?
    7 projects | /r/golang | 11 Apr 2023
    I'd rather suggest the use of tools more aligned with the core concepts of the language such as sqlx, which is an extension of the database/sql standard library. It allows you to use models/structs to map your tables but you have more control over the SQL statements you use to perform queries and the like. You can combine sqlx with Squirrel to build queries from composable parts.
  • Are there any decent ORMs in Golang?
    7 projects | /r/golang | 11 Mar 2023
    But using a query builder, something like squirrel or (plug) bqb, allows you to actually write SQL (or something close to it) when you need it but also handles the nasty string building bits. Though I agree that ORMs are not always bad, especially for small projects with well-defined scope.
  • GORM
    16 projects | /r/golang | 16 Feb 2023
    Plug for bqb as a query builder, but there's also squirrel which works pretty well too.

go-memdb

Posts with mentions or reviews of go-memdb. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-30.
  • I created an in-memory SQL database called MemSQL as a learning project
    3 projects | /r/golang | 30 Mar 2023
    For another in-memory database example, you could also check out https://github.com/hashicorp/go-memdb, but it's based on a radix tree implementation.
  • Why use a real K/V database over a MapStore?
    2 projects | /r/golang | 10 May 2021
    I just think its a glorified map. Yeah, for example go-memdb list some of its advantages in their https://github.com/hashicorp/go-memdb/blob/master/README.md README. But it is not clear whether you gain any performance gain over a map except for avoiding the locking as explained.
  • An Unlikely Database Migration
    6 projects | news.ycombinator.com | 13 Jan 2021
    >So we invested what probably amounts to two or three weeks of engineering time into designing in-memory indexes that are transactionally consistent

    I'll be interested to see that part if it does get open sourced. I've used https://github.com/hashicorp/go-memdb which sounds similar.

What are some alternatives?

When comparing Squirrel and go-memdb you can also consider the following projects:

goqu - SQL builder and query library for golang

dbbench - 🏋️ dbbench is a simple database benchmarking tool which supports several databases and own scripts

sqlx - general purpose extensions to golang's database/sql

badger - Fast key-value DB in Go.

GORM - The fantastic ORM library for Golang, aims to be developer friendly

buntdb - BuntDB is an embeddable, in-memory key/value database for Go with custom indexing and geospatial support

InfluxDB - Scalable datastore for metrics, events, and real-time analytics

bolt

sqlc - Generate type-safe code from SQL

go-cache - An in-memory key:value store/cache (similar to Memcached) library for Go, suitable for single-machine applications.

sqlx - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.

cockroach - CockroachDB - the open source, cloud-native distributed SQL database.