Replies: 1 comment
-
|
Some of this addressed via: #164 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
CREATE GRAPHfeature implemented in #123 melds two separate concepts:This combination is unusual in that most single file database implementations (SQLite, DuckDB) implement one instance = one file concept. Dealing with multiple databases is handled via
ATTACH DATABASElike syntax.The simplest implementation strategy was to have one storage manager per graph, which implicitly creates multiple files per database.
So if you create:
you'll see:
all sharing one WAL file foo.lbdb.wal (similar to postgres)
This design needs to be validated for:
Bug fix:
Beta Was this translation helpful? Give feedback.
All reactions