[BREAKGLASS] Append-only mirror of github.com/signalapp/better-sqlite3
Go to file
2020-03-29 11:21:08 -05:00
benchmark added backwards support for node v8.0.0 2018-12-17 12:57:07 -05:00
deps added SQLITE_DQS=0 and SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time options 2020-02-23 22:34:54 -06:00
docs Update benchmark.md 2020-03-29 11:18:58 -05:00
lib Use bindings to load the .node file 2020-01-07 08:22:29 -07:00
src fix typo 2020-02-24 07:59:30 -06:00
test updated docs 2020-01-07 14:05:18 -05:00
.gitattributes added .gitattributes 2017-06-07 14:08:22 -04:00
.gitignore updated gitignore 2018-10-09 10:51:00 -04:00
.npmrc removed package locking 2017-08-31 18:26:05 -04:00
.travis.yml added correct deploy key and cleaned up 2020-01-07 13:23:41 -05:00
appveyor.yml Add windows continuous integration tests (#193) 2019-08-05 10:58:16 -04:00
binding.gyp Prebuild 2019-10-30 11:22:49 -06:00
LICENSE added whitespace to some meta files 2018-09-15 17:05:00 -04:00
package.json 6.0.1 2020-02-24 08:01:42 -06:00
README.md updated README.md 2020-03-29 11:21:08 -05:00

better-sqlite3 Build Status Build status

The fastest and simplest library for SQLite3 in Node.js.

  • Full transaction support
  • High performance, efficiency, and safety
  • Easy-to-use synchronous API (faster than an asynchronous API... yes, you read that correctly)
  • Support for user-defined functions, aggregates, and extensions
  • 64-bit integers (invisible until you need them)

Help this project stay strong! 💪

better-sqlite3 is used by thousands of developers and engineers on a daily basis. Long nights and weekends were spent keeping this project strong and dependable, with no ask for compensation or funding, until now. If your company uses better-sqlite3, ask your manager to consider supporting the project:

How other libraries compare

select 1 row  get()  select 100 rows   all()   select 100 rows iterate() 1-by-1 insert 1 row run() insert 100 rows in a transaction
better-sqlite3 1x 1x 1x 1x 1x
sqlite and sqlite3 11.7x slower 2.9x slower 24.4x slower 2.8x slower 15.6x slower

You can verify these results by running the benchmark yourself.

Installation

npm install --save better-sqlite3

If you have trouble installing, check the troubleshooting guide.

Usage

const db = require('better-sqlite3')('foobar.db', options);

const row = db.prepare('SELECT * FROM users WHERE id=?').get(userId);
console.log(row.firstName, row.lastName, row.email);

Why should I use this instead of node-sqlite3?

  • node-sqlite3 uses asynchronous APIs for tasks that are either CPU-bound or serialized. That's not only bad design, but it wastes tons of resources. It also causes mutex thrashing which has devastating effects on performance.
  • node-sqlite3 exposes low-level (C language) memory management functions. better-sqlite3 does it the JavaScript way, allowing the garbage collector to worry about memory management.
  • better-sqlite3 is simpler to use, and it provides nice utilities for some operations that are very difficult or impossible in node-sqlite3.
  • better-sqlite3 is much faster than node-sqlite3 in most cases, and just as fast in all other cases.

When is this library not appropriate?

In most cases, if you're attempting something that cannot be reasonably accomplished with better-sqlite3, it probably cannot be reasonably accomplished with SQLite3 in general. For example, if you're executing queries that take one second to complete, and you expect to have many concurrent users executing those queries, no amount of asynchronicity will save you from SQLite3's serialized nature. Fortunately, SQLite3 is very very fast. With proper indexing, we've been able to achieve upward of 2000 queries per second with 5-way-joins in a 60 GB database, where each query was handling 550 kilobytes of real data.

If you have a performance problem, the most likely causes are inefficient queries, improper indexing, or a lack of WAL mode—not better-sqlite3 itself. However, there are some cases where better-sqlite3 could be inappropriate:

  • If you expect a high volume of concurrent reads each returning many megabytes of data (i.e., videos)
  • If you expect a high volume of concurrent writes (i.e., a social media site)
  • If your database's size is near the terabyte range

For these situations, you should probably use a full-fledged RDBMS such as PostgreSQL.

Documentation

License

MIT