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
Support for new sqlite3.Database('file:memdb?mode=memory&shared=true');
Proposed implementation
I tried to open an in-memory shared instance of sqlite to have share a cache between clustered node process.
new sqlite3.Database('file:memdb?mode=memory&shared=true'); simply created a file when I was hopping to get the shared-in-memory functionality described on https://www.sqlite.org/inmemorydb.html
Maybe I missed something.. If yes .. any comment is appreciated
Otherwise it would a great feature to add
The text was updated successfully, but these errors were encountered:
Summary
Support for
new sqlite3.Database('file:memdb?mode=memory&shared=true');
Proposed implementation
I tried to open an in-memory shared instance of sqlite to have share a cache between clustered node process.
new sqlite3.Database('file:memdb?mode=memory&shared=true');
simply created a file when I was hopping to get the shared-in-memory functionality described on https://www.sqlite.org/inmemorydb.htmlMaybe I missed something.. If yes .. any comment is appreciated
Otherwise it would a great feature to add
The text was updated successfully, but these errors were encountered: