in-memory database in Python

后端 未结 6 1907
没有蜡笔的小新
没有蜡笔的小新 2020-12-13 01:01

I\'m doing some queries in Python on a large database to get some stats out of the database. I want these stats to be in-memory so other programs can use them without going

6条回答
  •  一整个雨季
    2020-12-13 01:19

    You could possibly use a database like SQLite. It's not strictly speaking in memory, but it is fairly light and would be completely separate from your main database.

提交回复
热议问题