为什么我的 SQLite 数据库用单引号膨胀到 12MB(从 280KB)?
我正在使用 SQLiteManager。我有一个 280KB 的数据库,一天之内就膨胀到超过 12MB。我没有做任何不典型的事情。整个数据库中我仍然只有大约 4-6 个光结果。
当我使用文本编辑器打开数据库文件时,我看到一页又一页的单引号 (')。
另外,SQLiteManager 会时不时地将数十个单引号直接注入到我拥有的 TinyText 属性中。这在 SQLiteManager 的 Web UI 上可见。
对发生的事情有什么想法吗?
I'm using SQLiteManager. I had a 280KB database that bloated to over 12MB in just one day. I wasn't doing anything atypical. I still only have about 4-6 light results in the entire database.
When I open up the database file with a text editor, I see pages upon pages of single quotes (').
Also, SQLiteManager injects dozens of single quotes directly into the TinyText attributes that I have every now and then. This is visible on SQLiteManager's Web UI.
Any ideas as to what's going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论 SQLiteManager 在做什么,你能让它运行 VACUUM 吗?如果这释放了空间,您就可以让它定期运行;有关详细信息,请参阅此链接:
http://www.sqlite.org/lang_vacuum.html
另外,您可以将 auto_vacuum 设置为 FULL:
http://www.sqlite.org/pragma.html#pragma_auto_vacuum
Whatever SQLiteManager is doing, can you have it run VACUUM? If that frees the space, you can then have it run periodically; see this link for more information:
http://www.sqlite.org/lang_vacuum.html
Also, you can set auto_vacuum to FULL:
http://www.sqlite.org/pragma.html#pragma_auto_vacuum