metrics VS cornucopia

Compare metrics vs cornucopia and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
metrics cornucopia
19 20
70 697
- 12.3%
9.7 4.6
7 days ago 4 days ago
Rust
- GNU General Public License v3.0 or later
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.

metrics

Posts with mentions or reviews of metrics. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-03.
  • SQLx 0.7 released! Offline mode usability improvements, performance fixes and major upgrades across the board!
    6 projects | /r/rust | 3 Jul 2023
    It's worth keeping an eye on Diesel's metrics suite (https://github.com/diesel-rs/metrics) as well; I found and fixed some suboptimal buffering that was affecting performance.
  • What's everyone working on this week (26/2023)?
    15 projects | /r/rust | 26 Jun 2023
    See here for some numbers. The relevant code lives inside the diesel github repository. Please also keep in mind that these are just numbers and you should run those these on your own and also run tests with your actual work load.
  • Sqlx, diesel, orm or other sqlx query ?
    3 projects | /r/rust | 18 May 2023
    Performance is worse than in comparable frameworks
  • Handle sessions and database requests
    1 project | /r/rust | 16 May 2023
    For the database part you might want to checkout a crate that's not based on sqlx as sqlx is known for providing non-optimal performance for the sqlite backend. rusqlite or diesel perform much better for this use case.
  • What ORM do you use?
    6 projects | /r/rust | 9 May 2023
    No it will likely not be less performant. See these numbers for some benchmark results for numbers. (As always with benchmarks: Please don't trust my numbers. To be sure you need to do your own benchmarks with your own use-case)
  • Trying to learn by tutorials, for cannot find a single Actix/Diesel tutorial that actually compiles
    4 projects | /r/rust | 12 Mar 2023
    See here for some benchmark results. The benchmarks itself are in the diesel repository. Otherwise I believe there are numbers in the techempower benchmarks as well, although that includes other factors .
  • Thoughts about switching from sqlx to tokio_postgres?
    4 projects | /r/rust | 4 Feb 2023
    I'm developing a Rust web server backend in Axum that uses Postgres and performance will be pretty important since I plan to run it on one server for as long as possible. It seems like the postgres crate is about 2x faster than sqlx, and the postgres repository seems pretty active still.
  • Ormlite: An ORM in Rust for developers that love SQL
    4 projects | /r/rust | 25 Jan 2023
    Congratulations to the release. I know all of this is hard work. I would like to invite you to submit a ormlite implementation to the diesel benchmark collection. As soon as that's merged you will get regular reports here. The relevant code is here in the diesel repository.
  • Rails developers write some Rust: a review of Axum 0.6
    2 projects | /r/rust | 16 Jan 2023
    In that case you may be interested in the metrics for different database libraries. diesel is doing rather well at the moment. sqlx is in the middle of a large rewrite that should improve performance, so we'll see how it compares after that
  • Using Rust as my Backend
    8 projects | /r/rust | 2 Nov 2022
    See here for some benchmark results for the diesel repository. Please keep in mind that as always with benchmarks, these numbers are not necessarily true for your usecase. Be sure to checkout at least the benchmark code and draw your own conclusions from there.

cornucopia

Posts with mentions or reviews of cornucopia. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-02.
  • We built our customer data warehouse all on Postgres
    16 projects | news.ycombinator.com | 2 Feb 2024
    There are multiple queries each separated by ; and on top of each query, there's a comment giving a name to the query (it's more like a header)

    I think the only thing that would require specific support in postgres_lsp is using the :parameter_name syntax for prepared statements [1] (in vanilla Postgres would be something like $1 or $2, but in Cornucopia it is named to aid readability). But, if postgres_lsp is forgiging enough to not choke on that, then it seems completely fit for this use case.

    [0] https://github.com/cornucopia-rs/cornucopia

    [1] https://cornucopia-rs.netlify.app/book/writing_queries/writi...

  • Is ORM still an anti-pattern?
    15 projects | news.ycombinator.com | 27 Jun 2023
    Some examples for anyone else reading:

    https://github.com/kyleconroy/sqlc

    https://github.com/cornucopia-rs/cornucopia

    This is my preferred method of interacting with databases now.

    Very flexible.

  • What ORM do you use?
    6 projects | /r/rust | 9 May 2023
    I like Cornucopia. It’s a SQL-first approach, so I don’t have to worry about an ORM generating pathological queries. It’s also basically zero cost compared to directly using rust-postgres and supports both sync and async. I also like that my SQL queries end up separate from my Rust code, so it’s easy to update all the relevant queries when the schema changes.
  • What is the recommended way to implement session authorization?
    4 projects | /r/rust | 2 Mar 2023
    Also, I moved away from SQLx due to slow compile times and now use https://github.com/cornucopia-rs/cornucopia
  • Oops, You Wrote a Database
    2 projects | news.ycombinator.com | 26 Feb 2023
    While we're on the subject of ORM's I really like the https://github.com/cornucopia-rs/cornucopia way of doing things.

    Basically write SQL in a file and code generate a function that runs the SQL for you and puts it into a struct (this one is for rust)

    I think there's a library to do the same thing with typescript.

    For me, the best way to talk to the database is with SQL and I don't have to learn an ORMs way of doing it.

  • Thoughts about switching from sqlx to tokio_postgres?
    4 projects | /r/rust | 4 Feb 2023
    You can take a look at https://github.com/cornucopia-rs/cornucopia which is a thin codegen layer on top of tokio-postgres for ease of use.
  • Ormlite: An ORM in Rust for developers that love SQL
    4 projects | /r/rust | 25 Jan 2023
    I think we have that https://github.com/cornucopia-rs/cornucopia
  • Ask HN: ORM or Native SQL?
    10 projects | news.ycombinator.com | 6 Jan 2023
    The best solution I've ever seen is this Rust library https://github.com/cornucopia-rs/cornucopia

    You write plain SQL for you schema (just a schema.sql is enough) and plain SQL functions for your queries. Then it generates Rust types and Rust functions from from that. If you don't use Rust, maybe there's a library like that for your favorite language.

    Optionally, pair it with https://github.com/bikeshedder/tusker or https://github.com/blainehansen/postgres_migrator (both are based off https://github.com/djrobstep/migra) to generate migrations by diffing your schema.sql files, and https://github.com/rust-db/refinery to perform those migrations.

    Now, if you have simple crud needs, you should probably use https://postgrest.org/en/stable/ and not an ORM. There are packages like https://www.npmjs.com/package/@supabase/postgrest-js (for JS / typescript) and probably for other languages too.

    If you insist on an ORM, the best of the bunch is prisma https://www.prisma.io/ - outside of the typescript/javascript ecosystem it has ports for some other languages (with varying degrees of completion), the one I know about is the Rust one https://prisma.brendonovich.dev/introduction

  • Anything like sqlc for Rust?
    5 projects | /r/rust | 1 Jan 2023
  • What features would you consider missing/nice to haves for backend web development in Rust?
    6 projects | /r/rust | 4 Nov 2022
    Does Cornucopia satisfy this requirement?

What are some alternatives?

When comparing metrics and cornucopia you can also consider the following projects:

sea-orm - 🐚 An async & dynamic ORM for Rust

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

sea-query - 🔱 A dynamic SQL query builder for MySQL, Postgres and SQLite

rbatis - Rust Compile Time ORM robustness,async, pure Rust Dynamic SQL

diesel_async - Diesel async connection implementation

rust-postgis - postgis helper library.

bb8 - Full-featured async (tokio-based) postgres connection pool (like r2d2)

const-eval - home for proposals in and around compile-time function evaluation

typed-session-axum - Typed-session as axum middleware

diesel - A safe, extensible ORM and Query Builder for Rust