No description
Find a file
William Casarin 0e2e18d12d
Some checks failed
C/C++ CI / build (push) Has been cancelled
fix build on macos
2025-03-23 18:41:45 -07:00
.github/workflows make: don't build bindings in all 2023-12-15 19:53:36 -08:00
ccan fix windows build 2024-11-23 14:55:46 -08:00
deps fix windows build 2024-11-23 14:55:46 -08:00
devtools add ndb_sign_id and ndb_calculate_id 2023-07-25 12:04:51 -07:00
schemas update metadata schema 2023-10-07 22:51:55 -07:00
src fix build on macos 2025-03-23 18:41:45 -07:00
testdata test: fix test failure 2025-03-19 18:39:34 -07:00
.envrc ndb: add profile flatbuffer record dump util 2024-04-19 22:18:55 -07:00
.gitignore Initial relay index implementation 2025-03-20 12:54:04 -07:00
.gitmodules add ndb_sign_id and ndb_calculate_id 2023-07-25 12:04:51 -07:00
.rgignore rgignore: add testdata 2023-09-13 08:29:43 -07:00
bench-ingest-many.c ingest: add configurable ingest filter 2023-12-01 13:13:06 -08:00
CMakeLists.txt Add a CMake script. Tested in Ubuntu Linux 22.04 2023-07-25 09:15:58 -07:00
LICENSE switch to MIT license 2024-05-28 11:26:49 -07:00
Makefile Merge remote-tracking branch 'github/pr/43' 2024-08-27 11:46:48 +03:00
ndb.c query: implement author_kind query plan 2025-03-23 12:44:47 -07:00
README.md readme: we have query support now 2024-03-21 18:03:26 +01:00
shell.nix perf: add some flamegraph helpers to makefile 2024-01-08 14:30:52 -08:00
test.c debug: add a print for debugging rust integration 2025-03-21 14:46:26 -07:00
TODO Initial relay index implementation 2025-03-20 12:54:04 -07:00

nostrdb

ci

The unfairly fast nostr database backed by lmdb.

nostrdb stores nostr events as a custom in-memory representation that enables zero-copy and O(1) access to all note fields. This is similar to flatbuffers but it is custom built for nostr events.

These events are then memory-mapped inside lmdb, enabling insanely fast, zero-copy access and querying.

This entire design of nostrdb is copied almost entirely from strfry1, the fastest nostr relay. The difference is that nostrdb is meant to be embeddable as a C library into any application with full nostr query support.

API

The API is very unstable. nostrdb is in heavy development mode so don't expect any of the interfaces to be stable at this time.

CLI

nostrdb comes with a handy ndb command line tool for interacting with nostrdb databases. The tool is relatively new, and only supports a few commands.

Usage

usage: ndb [--skip-verification] [-d db_dir] <command>

commands

	stat
	search [--oldest-first] [--limit 42] <fulltext query>
	query [-k 42] [-k 1337] [-l 42]
	import <line-delimited json file>

settings

	--skip-verification  skip signature validation
	-d <db_dir>          set database directory

Building

$ make ndb

Fulltext Queries

nostrdb supports fulltext queries. You can import some test events like so:

$ make testdata/many-events.json
$ ndb --skip-verification import testdata/many-events.json
$ ndb search --limit 2 --oldest-first 'nosy ostrich'

[01] K<'ostrich' 7 1671217526 note_id:253309>
Q: What do you call a nosy ostrich?
A: A nosTrich!