I am trying to make the best out of an aws server and had the idea to use an in memory database across multiple threads(using SQLite 3 in python) I found this command online:
conn = sqlite3.connect('file::memory:?cache=shared')
but then I get this vague error:
sqlite3.OperationalError: unable to open database file
Is it even possible to do this anymore?