关于sqlite *** 作出现-shm,和-wal后缀文件

关于sqlite *** 作出现-shm,和-wal后缀文件,第1张

概述          手上的Android项目把数据库放在sd卡上 *** 作,之前一直用2.2的模拟器,昨天拿到2.3的htc真机之后开测。出现一个奇怪的问题,就是当我 *** 作数据库后会生成两个跟数据库名一样后缀分别为-shm和-wal的文件。不知道是什么玩意就google了一下!!!        最后在sqlite官网(http://www.sqlite.org/fileformat2.html)发现了这
手上的AndroID项目把数据库放在sd卡上 *** 作,之前一直用2.2的模拟器,昨天拿到2.3的htc真机之后开测。出现一个奇怪的问题,就是当我 *** 作数据库后会生成两个跟数据库名一样后缀分别为-shm和-wal的文件。不知道是什么玩意就Google了一下!!!


最后在sqlite官网(http://www.sqlite.org/fileformat2.HTML)发现了这个说明

其中-wal的文件意思是write-ahead log,顾名思义就是保存的一个日志。。。3.7的sqlite之后开始这个功能,当一个数据库采用WAL模式,所有连接数据的 *** 作都必须使用WAL,然后在在数据库文件夹下生成一个后缀为-wal的文件保存 *** 作日志,我打开看了之后发现里面内容更象一份数据库的备份文件,大小比数据库有时还大;

4.0 The Write-Ahead Log

Beginning withversion 3.7.0,sqlite supports a new transaction control mechanism called "write-ahead log" or "WAL". When a database is in WAL mode,all connections to that database must use the WAL. A particular database will use either a rollback journal or a WAL,but not both at the same time. The WAL is always located in the same directory as the database file and has the same name as the database file but with the string "-wal" appended.


这个-shm说的是一个共享内存的问题,有兴趣的可以看下,基本上这两个文件不会对数据库产生任何影响!

4.5 WAL-Index Format

Conceptually,the wal-index is shared memory,though the current VFS implementations use a mmapped file for the wal-index. The mmapped file is in the same directory as the database and has the same name as the database with a "-shm" suffix appended. Because the wal-index is shared memory,sqlite does not supportjournal_mode=WALon a network filesystem when clIEnts are on different machines. All users of the database must be able to share the same memory.

The purpose of the wal-index is to answer this question quickly:

Given a page number P and a maximum WAL frame index M,return the largest WAL frame index for page P that does not exceed M,or return NulL if there are no frames for page P that do not exceed M.

TheMvalue in the prevIoUs paragraph is the "mxFrame" value defined insection 4.4that is read at the start of a transaction and which defines the maximum frame from the WAL that the reader will use.

The wal-index is transIEnt. After a crash,the wal-index is reconstructed from the original WAL file. The VFS is required to either truncate or zero the header of the wal-index when the last connection to it closes. Because the wal-index is transIEnt,it can use an architecture-specific format; it does not have to be cross-platform. Hence,unlike the database and WAL file formats which store all values as big endian,the wal-index stores multi-byte values in the native byte order of the host computer.

This document is concerned with the persistent state of the database file,and since the wal-index is a transIEnt structure,no further information about the format of the wal-index will be provIDed here. Complete details on the format of the wal-index are contained within comments in sqlite source code.

总结

以上是内存溢出为你收集整理的关于sqlite *** 作出现-shm,和-wal后缀文件全部内容,希望文章能够帮你解决关于sqlite *** 作出现-shm,和-wal后缀文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1174110.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存