sqlite-ecosystem VS sqlite-vec

Compare sqlite-ecosystem vs sqlite-vec and see what are their differences.

sqlite-ecosystem

An overview of all my SQLite extensions, and a roadmap for future extensions and tooling! (by asg017)

sqlite-vec

Work-in-progress vector search SQLite extension that runs anywhere. (by asg017)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
sqlite-ecosystem sqlite-vec
2 3
119 583
- -
4.7 8.0
10 months ago 5 days ago
TypeScript C
- Apache 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.

sqlite-ecosystem

Posts with mentions or reviews of sqlite-ecosystem. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-02.
  • I'm writing a new vector search SQLite Extension
    13 projects | news.ycombinator.com | 2 May 2024
    I definitely plan to! I have a much larger list of SQLite extensions I've built here: https://github.com/asg017/sqlite-ecosystem

    Here's a few other references you may enjoy if you wanna learn more about SQLite extensions:

    - The single source file for sqlite-vec: https://github.com/asg017/sqlite-vec/blob/main/sqlite-vec.c

    - sqlean, a project from Anton Zhiyanov which is good base of great SQLite extensions: https://github.com/nalgeon/sqlean

    - The official SQLite docs: https://www.sqlite.org/loadext.html

    - The "hello world" SQLite extension example: https://www.sqlite.org/src/file/ext/misc/rot13.c

  • SQLite Extension for Efficient Vector Search
    2 projects | news.ycombinator.com | 13 Apr 2023
    Author here, happy to answer any questions! My "Introducing sqlite-vss: A SQLite Extension for Vector Search" [0] blog post has more details about the motivations behind this extensions, along with a demo. Includes a semantic search engine hosted on Datasette, build with sqlite-vss and sentence-transformers, on fly.io. Simple and cheap!

    Though my favorite part about this extension (and all my other SQLite extensions[1]): you can `pip install sqlite-vss` for Python, `npm install sqlite-vss` for Node.js, or use https://deno.land/x/sqlite_vss for Deno! The underlying SQLite extension has been compiled on different platforms and uploaded to pip/npm/deno.land/x to make distribution easier. There's also pre-compiled extensions on each Github release if you just want to use it with the sqlite3 CLI.

    Currently working on getting Mac M1 arm builds, hopefully by end of this week [2]

    [0] https://observablehq.com/@asg017/introducing-sqlite-vss

    [1] https://github.com/asg017/sqlite-ecosystem

    [2] https://github.com/asg017/sqlite-vss/issues/13

sqlite-vec

Posts with mentions or reviews of sqlite-vec. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-02.
  • I'm writing a new vector search SQLite Extension
    13 projects | news.ycombinator.com | 2 May 2024
    I definitely plan to! I have a much larger list of SQLite extensions I've built here: https://github.com/asg017/sqlite-ecosystem

    Here's a few other references you may enjoy if you wanna learn more about SQLite extensions:

    - The single source file for sqlite-vec: https://github.com/asg017/sqlite-vec/blob/main/sqlite-vec.c

    - sqlean, a project from Anton Zhiyanov which is good base of great SQLite extensions: https://github.com/nalgeon/sqlean

    - The official SQLite docs: https://www.sqlite.org/loadext.html

    - The "hello world" SQLite extension example: https://www.sqlite.org/src/file/ext/misc/rot13.c

What are some alternatives?

When comparing sqlite-ecosystem and sqlite-vec you can also consider the following projects:

sqlite-vss - A SQLite extension for efficient vector search, based on Faiss!