sqlite

sqlite mirror (by smparkes)

Sqlite Alternatives

Similar projects and alternatives to sqlite

  1. Visual Studio Code

    3,137 sqlite VS Visual Studio Code

    Visual Studio Code

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. supabase

    884 sqlite VS supabase

    The open source Firebase alternative. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications.

  4. Express

    780 sqlite VS Express

    Fast, unopinionated, minimalist web framework for node.

  5. flyctl

    Command line tools for fly.io services

  6. PostgreSQL

    Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch

  7. Redis

    For developers, who are building real-time data-driven applications, Redis is the preferred, fastest, and most feature-rich cache, data structure server, and document and vector query engine.

  8. MongoDB

    306 sqlite VS MongoDB

    The MongoDB Database

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. MySQL

    187 sqlite VS MySQL

    MySQL Server, the world's most popular open source database, and MySQL Cluster, a real-time, open source transactional database.

  11. litestream

    Streaming replication for SQLite.

  12. Milvus

    126 sqlite VS Milvus

    Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search

  13. cockroach

    CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement.

  14. pytudes

    104 sqlite VS pytudes

    Python programs, usually short, of considerable difficulty, to perfect particular skills.

  15. Memcached

    memcached development tree

  16. monorepo

    63 sqlite VS monorepo

    lix (change control system) && inlang (globalization ecosystem for software built on lix)

  17. Neo4j

    59 sqlite VS Neo4j

    Graphs for Everyone

  18. dgraph

    36 sqlite VS dgraph

    high-performance graph database for real-time use cases

  19. MariaDB

    23 sqlite VS MariaDB

    MariaDB server is a community developed fork of MySQL server. Started by core members of the original MySQL team, MariaDB actively works with outside developers to deliver the most featureful, stable, and sanely licensed open SQL server in the industry. (by MariaDB)

  20. Apache HBase

    Apache HBase

  21. savvy-cli

    Automatically capture and surface your team's tribal knowledge

  22. glib

    7 sqlite VS glib

    Read-only mirror of https://gitlab.gnome.org/GNOME/glib

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better sqlite alternative or higher similarity.

sqlite discussion

Log in or Post with

sqlite reviews and mentions

Posts with mentions or reviews of sqlite. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-16.
  • Which Go Web Backend Framework Is Right for Your Next Project? A Detailed Analysis of Features and Performance
    11 projects | dev.to | 16 Mar 2025
    Additionally, Beego includes a robust Object-Relational Mapper (ORM) that simplifies database interactions. Instead of writing complex SQL queries, developers can manipulate data using Go objects while the ORM handles the translation to and from the database. It supports popular database systems such as MySQL, PostgreSQL, and SQLite.
  • Using OpenAPI to Automate API Integration With Rapyd's Payment Gateway
    7 projects | dev.to | 11 Mar 2025
    A SQLite database
  • Modern Web Development Sucks? How PostgreSQL Can Replace Your Tech Stack
    12 projects | dev.to | 5 Mar 2025
    Why PostgreSQL and not MySQL or SQLite? Out of the box, PostgreSQL provides advanced data types like JSONB, arrays, key-value stores, and even geometric types for defining shapes.
  • The definitive guide to using Django with SQLite in production 💡
    13 projects | dev.to | 18 Jan 2025
    I currently have a managed PostgreSQL database at Digital Ocean which has worked well, but I have been looking into using SQLite in production to reduce server costs and network latency. And, since I'm not particularly DevOps-y, I do not want to be on the hook for maintaining my own PostgreSQL database. So, I have been investigating other solutions for my newest side project, filmcliq.com.
  • Building Static HTML Pages with JSX Server-Side Rendering
    8 projects | dev.to | 13 Jan 2025
    SQLite Documentation
  • Rose::DB ORM and Perl
    2 projects | dev.to | 12 Jan 2025
    A while ago I found out from a post that Dbix::Class Perls default ORM is abandoned dbixclass not updated. So I started to look around to see what else is out there on metacpan and can be used as an alternative. This is how I found Rose::DB an ridiculously fast and fun ORM. In this post I plan to show to you how get started with this. The first step is to create a DB for this I will use SQLite. So lets start by installing dependenceies:
  • Does Scale-to-Zero Redefine Aurora’s ‘Serverlessness’?
    1 project | dev.to | 24 Nov 2024
    "The right tool for the right job" is the motto of the wise architect. In similar cases, I'd also consider a single-table DynamoDB or even SQLite.
  • Using SQLite as Storage for Web Server Static Content
    11 projects | news.ycombinator.com | 27 Oct 2024
    From Appropriate Uses For SQLite - https://www.sqlite.org/whentouse.html :

    > The amount of web traffic that SQLite can handle depends on how heavily the website uses its database. Generally speaking, any site that gets fewer than 100K hits/day should work fine with SQLite. The 100K hits/day figure is a conservative estimate, not a hard upper bound. SQLite has been demonstrated to work with 10 times that amount of traffic ... The SQLite website (https://www.sqlite.org/) uses SQLite itself, of course, and as of this writing (2015) it handles about 400K to 500K HTTP requests per day, about 15-20% of which are dynamic pages touching the database. Dynamic content uses about 200 SQL statements per webpage. This setup runs on a single VM that shares a physical server with 23 others and yet still keeps the load average below 0.1 most of the time. See also: https://news.ycombinator.com/item?id=33975635

  • Introduction to DBMS
    2 projects | dev.to | 27 Oct 2024
    SQLite: https://www.sqlite.org/
  • Ask HN: Is SQLite Underrated?
    1 project | news.ycombinator.com | 13 Oct 2024
    The SQLite documentation says that

    "SQLite works great as the database engine for most low to medium traffic websites (which is to say, most websites). The amount of web traffic that SQLite can handle depends on how heavily the website uses its database. Generally speaking, any site that gets fewer than 100K hits/day should work fine with SQLite. The 100K hits/day figure is a conservative estimate, not a hard upper bound. SQLite has been demonstrated to work with 10 times that amount of traffic.

    The SQLite website (https://www.sqlite.org/) uses SQLite itself, of course, and as of this writing (2015) it handles about 400K to 500K HTTP requests per day, about 15-20% of which are dynamic pages touching the database. Dynamic content uses about 200 SQL statements per webpage. This setup runs on a single VM that shares a physical server with 23 others and yet still keeps the load average below 0.1 most of the time."

    My question is, why do people keep advising against using it in production? How many websites have that many users? From what I just copied above from the documentation, Would it be bad to use it for a website with 15-20k users? I am confused and need someone to explain to me.

  • A note from our sponsor - InfluxDB
    www.influxdata.com | 21 May 2025
    InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now. Learn more →

Stats

Basic sqlite repo stats
25
122
10.0
over 14 years ago

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that C is
the 6th most popular programming language
based on number of references?