Using SQLite to query an in-memory database created by sqlite_blaster
srinarasi opened this issue · 1 comments
srinarasi commented
I have an in-memory database that I create on startup and query frequently thereafter. Do you know of a way to use sqlite_blaster to create the in-memory DB initially and then ask SQLite to use the tree created by sqlite_blaster as the backend?
siara-cc commented
You could use a big enough cache with this library so all data is stored in memory. But you would have to give a filename and store it to disk eventually for loading it with Sqlite for querying it thereafter. This library does not use the same way as SQLite to store database in memory.