You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE GRAPH feature implemented in #123 melds two separate concepts:
CREATE DATABASE concept in SQL databases such as postgres
CREATE GRAPH concept in GQL
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 DATABASE like syntax.
The simplest implementation strategy was to have one storage manager per graph, which implicitly creates multiple files per database.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
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:
All reactions