How to browse an in-memory SQLite database with the command line tool sqlite3 -
is there way load entire sqlite database memory faster results, using sqlite3 cli tool? thanks!
i'm not sure of trying accomplish here, have 2 ideas propose:
1- copy database attached in memory database. link tell how attach in memory database: http://www.sqlite.org/lang_attach.html
2- increase cache size, keep transactions in memory, , keep "temp store" in memory: http://www.sqlite.org/pragma.html#pragma_cache_size http://www.sqlite.org/pragma.html#pragma_journal_mode http://www.sqlite.org/pragma.html#pragma_temp_store
Comments
Post a Comment