SQLite 的内存消耗?
Android 上的 SQLite 允许您通过为数据库名称传递 null 来指定数据库位于“内存中”SQLiteOpenHelper
我现在的问题与内存使用有关:这是否会耗尽我的应用程序允许的宝贵堆内存?
SQLite on Android allows you to specify that your databse is "in-memory" by passing null for the database name SQLiteOpenHelper
My question now is related to memory usage: does this use up my precious heap memory that is allowed for my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您的 sqlite 数据库是动态分配的,因此它存储在堆上。
Since your sqlite database is dynamically allocated, yes it's stored on the heap.