本文地址:http://t.csdn.cn/kE8ND
官方文档链接:https://www.sqlite.org/wal.html#noshm
PRAGMA journal_mode = WAL
PRAGMA journal_mode 是一个 SQLite 命令,用于查询或更改数据库的日志模式。日志模式决定了 SQLite 如何处理事务和保证数据的一致性。
以下是一些可以设置的日志模式:
可以使用 PRAGMA journal_mode 命令来查询或更改日志模式,例如:
ptr->execute("PRAGMA journal_mode = WAL");
ptr->execute("PRAGMA wal_autocheckpoint=5000;");
ptr->execute("PRAGMA SYNCHRONOUS=NORMAL");
if (sqlite3_busy_timeout(connection, 20 * 1000) != SQLITE_OK) {
LOG(ERROR) << "config busy timeout fail, db_path: " << db_path;
} else {
LOG(INFO) << "config busy timeout success, db_path: " << db_path;
}
ptr->execute("PRAGMA SYNCHRONOUS=NORMAL");
PRAGMA synchronous 是一个 SQLite 命令,用于控制数据库文件在磁盘上的写入同步级别。这个设置会影响到数据的持久性和性能。PRAGMA synchronous 有以下几个级别:
OFF (0):同步关闭。SQLite 不会等待操作系统将数据写入磁盘。这种模式下,性能最高,但在系统崩溃或电源故障时,可能会导致数据库损坏或数据丢失。
NORMAL (1):普通同步。SQLite 会在某些关键操作(如事务提交)时等待操作系统将数据写入磁盘。这种模式下,性能较好,但在某些罕见的情况下,仍然可能导致数据库损坏。
FULL (2):完全同步(默认)。SQLite 会在关键操作时确保数据已经写入磁盘。这种模式下,数据的持久性得到了保证,但性能可能较低。
EXTRA (3):额外同步。这个级别类似于 FULL,但会在某些额外的操作时进行同步,以提供更高的数据持久性保证。这种模式下,性能可能会进一步降低。
Sqlite默认是FULL,虽然是最安全的,但是在wal下性能较差,根据官方文档,建议使用NORMAL。
pragma_synchronous
Query or change the setting of the “synchronous” flag. The first (query) form will return the synchronous setting as an integer. The second form changes the synchronous setting. The meanings of the various synchronous settings are as follows:
EXTRA (3)
EXTRA synchronous is like FULL with the addition that the directory containing a rollback journal is synced after that journal is unlinked to commit a transaction in DELETE mode. EXTRA provides additional durability if the commit is followed closely by a power loss.
FULL (2)
When synchronous is FULL (2), the SQLite database engine will use the xSync method of the VFS to ensure that all content is safely written to the disk surface prior to continuing. This ensures that an operating system crash or power failure will not corrupt the database. FULL synchronous is very safe, but it is also slower. FULL is the most commonly used synchronous setting when not in WAL mode.
NORMAL (1)
When synchronous is NORMAL (1), the SQLite database engine will still sync at the most critical moments, but less often than in FULL mode. There is a very small (though non-zero) chance that a power failure at just the wrong time could corrupt the database in journal_mode=DELETE on an older filesystem. WAL mode is safe from corruption with synchronous=NORMAL, and probably DELETE mode is safe too on modern filesystems. WAL mode is always consistent with synchronous=NORMAL, but WAL mode does lose durability. A transaction committed in WAL mode with synchronous=NORMAL might roll back following a power loss or system crash. Transactions are durable across application crashes regardless of the synchronous setting or journal mode. The synchronous=NORMAL setting is a good choice for most applications running in WAL mode.
OFF (0)
With synchronous OFF (0), SQLite continues without syncing as soon as it has handed data off to the operating system. If the application running SQLite crashes, the data will be safe, but the database might become corrupted if the operating system crashes or the computer loses power before that data has been written to the disk surface. On the other hand, commits can be orders of magnitude faster with synchronous OFF.
In WAL mode when synchronous is NORMAL (1), the WAL file is synchronized before each checkpoint and the database file is synchronized after each completed checkpoint and the WAL file header is synchronized when a WAL file begins to be reused after a checkpoint, but no sync operations occur during most transactions. With synchronous=FULL in WAL mode, an additional sync operation of the WAL file happens after each transaction commit. The extra WAL sync following each transaction helps ensure that transactions are durable across a power loss. Transactions are consistent with or without the extra syncs provided by synchronous=FULL. If durability is not a concern, then synchronous=NORMAL is normally all one needs in WAL mode.
The TEMP schema always has synchronous=OFF since the content of of TEMP is ephemeral and is not expected to survive a power outage. Attempts to change the synchronous setting for TEMP are silently ignored.
pagesize默认设置的是4k,autocheckpoint设置5000,表示5000个page的数据量,会进行一下checkpoint,也就是20M。
在 SQLite 的 WAL(Write-Ahead Logging)模式下,“busy” 错误通常是由于多个连接试图同时访问数据库时发生的。以下是一些可能导致 “busy” 错误的情况:
PRAGMA busy_timeout=3000;
PRAGMA locking_mode=EXCLUSIVE; 是一个 SQLite 命令,用于设置数据库的锁定模式为 Exclusive 模式。
SQLite 支持三种锁定模式:
NORMAL:在这种模式下,SQLite 在事务开始时获取共享锁,当第一次写入时获取保留锁,当事务提交时获取排他锁。在事务结束后,SQLite 会释放所有的锁。
EXCLUSIVE:在这种模式下,SQLite 在事务开始时获取排他锁,并在事务结束后保持该锁。这意味着在事务进行期间,其他数据库连接不能进行读取或写入操作。
IMMEDIATE:在这种模式下,SQLite 在事务开始时获取保留锁,并在事务结束后保持该锁。这意味着在事务进行期间,其他数据库连接可以进行读取操作,但不能进行写入操作。
PRAGMA locking_mode=EXCLUSIVE; 这个命令会设置数据库的锁定模式为 Exclusive 模式。这意味着当你开始一个事务时,SQLite 会立即获取一个排他锁,并在事务结束后保持该锁。这可以防止其他数据库连接在你的事务进行期间进行任何操作。
然而,需要注意的是,Exclusive 模式可能会对并发性能产生影响,因为它阻止了其他数据库连接的所有操作。应该根据具体需求和环境来决定是否使用这种模式。
SQLite 的默认锁定模式是 NORMAL。在这种模式下,SQLite 在事务开始时获取共享锁,当第一次写入时获取保留锁,当事务提交时获取排他锁。在事务结束后,SQLite 会释放所有的锁。
这种模式允许多个读取操作同时进行,但只允许一个写入操作在同一时间进行。这对于大多数应用来说是足够的,因为读取操作通常比写入操作更频繁。
然而,如果你需要更高级的并发控制,你可以使用 PRAGMA locking_mode 命令来改变锁定模式。例如,你可以设置为 IMMEDIATE 模式或 EXCLUSIVE 模式,这两种模式在事务开始时就获取更高级别的锁,从而提供更严格的并发控制。
当开启 SQLite 的 WAL (Write-Ahead Logging) 模式后,SQLite 的并发性能会得到显著提升。在 WAL 模式下,多个读取操作和一个写入操作可以同时进行,这是因为写入操作不会阻塞读取操作,反之亦然。
在 WAL 模式下,SQLite 通常使用 NORMAL 锁定模式。在这种模式下,读取和写入操作可以并发进行,这正是 WAL 模式的优势所在。因此,通常情况下,你不需要改变锁定模式。
然而,如果你有特殊的需求,比如你需要阻止其他连接进行读取或写入操作,你仍然可以使用 PRAGMA locking_mode 命令来改变锁定模式。但是请注意,这可能会降低并发性能,因为它可能会阻止其他操作的进行。
总的来说,开启 WAL 模式后,通常应该使用默认的 NORMAL 锁定模式,除非你有特殊的需求。
sqlite3_config(SQLITE_CONFIG_MULTITHREAD); 是一个 SQLite C API 的调用,用于设置 SQLite 的线程模式为多线程(multi-threaded)模式。
SQLite 支持三种线程模式:
sqlite3_config(SQLITE_CONFIG_MULTITHREAD); 这个调用会设置 SQLite 为多线程模式。这意味着你可以在多个线程中使用 SQLite,但是你需要确保每个数据库连接在同一时间只被一个线程使用。
注意,这个调用应该在所有的 SQLite 操作之前进行,通常在程序启动时。另外,这个调用可能会失败,例如如果你已经在其他地方使用了 SQLite。在这种情况下,你需要检查这个调用的返回值来确定它是否成功。
设置 SQLite 为 Serialized 模式并开启 WAL(Write-Ahead Logging)模式,可以实现在多线程环境下的读写并发。在 Serialized 模式下,SQLite 会使用严格的线程安全机制,允许多个线程同时使用同一个数据库连接。这意味着你可以在多个线程中同时进行读取和写入操作,而不需要担心线程安全问题。
同时,开启 WAL 模式可以进一步提高并发性能。在 WAL 模式下,读取操作和写入操作可以同时进行。这是因为在 WAL 模式下,写入操作会被写入到一个单独的 WAL 文件中,而不是直接写入到数据库文件中。这意味着读取操作可以在不被写入操作阻塞的情况下进行。然而,需要注意的是,虽然 WAL 模式允许读取和写入操作同时进行,但是它仍然只允许一个写入操作在同一时间进行。如果你需要多个写入操作同时进行,你可能需要考虑其他的解决方案,如分片或者使用其他的数据库系统。
另外,使用 Serialized 模式和 WAL 模式可能会对性能产生影响,因为它们需要额外的线程同步和磁盘 I/O 操作。你应该根据你的具体需求和环境来决定是否使用这些模式。
PRAGMA secure_delete=ON 命令用于启用安全删除模式,以避免已删除的数据被恢复和泄露。开启 WAL 模式可以提高并发读写性能和数据完整性,以提高 SQLite 数据库的性能和可靠性。
在使用 PRAGMA secure_delete=ON 命令和开启 WAL 模式时,你需要注意以下几个问题:
PRAGMA mmap_size= 是一个 SQLite 命令,用于设置内存映射 I/O 的最大字节数。内存映射 I/O 可以提高 SQLite 的性能,特别是对于大型数据库和大型查询。
这个命令的语法是 PRAGMA mmap_size=N;,其中 N 是你想要设置的字节数。例如,PRAGMA mmap_size=268435456; 会设置内存映射 I/O 的最大字节数为 256MB。
默认情况下,SQLite 的内存映射 I/O 是关闭的,也就是说 mmap_size 的默认值是 0。你可以使用 PRAGMA mmap_size; 命令来查询当前的 mmap_size 值。
需要注意的是,虽然内存映射 I/O 可以提高性能,但是它也可能会增加内存的使用量。因此,你应该根据你的具体需求和环境来决定是否使用内存映射 I/O,以及设置多大的 mmap_size 值。
PRAGMA mmap_size 和 WAL (Write-Ahead Logging) 是两个独立的 SQLite 功能,它们可以同时使用,没有冲突。
PRAGMA mmap_size 是用来设置内存映射 I/O 的最大字节数,这可以提高 SQLite 的性能,特别是对于大型数据库和大型查询。
WAL 是一种日志模式,它允许多个读取操作和一个写入操作同时进行,从而提高并发性能。
这两个功能都是为了提高 SQLite 的性能,它们可以同时使用,以提供更高的性能。然而,你应该根据你的具体需求和环境来决定是否使用这些功能,以及如何配置它们。例如,虽然内存映射 I/O 和 WAL 都可以提高性能,但是它们也可能会增加内存的使用量,所以你需要根据你的内存资源来决定是否使用这些功能,以及如何配置它们。
PRAGMA auto_vacuum; 是一个 SQLite 命令,用于查询或设置数据库的自动清理(auto-vacuum)模式。
SQLite 的 auto-vacuum 功能可以自动回收删除的数据所占用的磁盘空间,使其可以被后续的插入操作重用。这个功能默认是关闭的。
以下是 PRAGMA auto_vacuum; 的可能用法:
PRAGMA auto_vacuum 和 WAL (Write-Ahead Logging) 模式之间没有直接冲突。它们可以同时启用并共同工作。auto_vacuum 是用于控制 SQLite 数据库空间回收的设置,而 WAL 模式是用于控制事务和数据一致性的日志模式。
PRAGMA auto_vacuum 有以下几种模式:
同时启用 auto_vacuum 和 WAL 模式时,SQLite 会在事务提交时尝试回收和释放未使用的存储空间。这两个功能可以共同工作,但在某些情况下,它们可能会对性能产生一定影响。例如,当 auto_vacuum 设置为 FULL 时,SQLite 可能需要在事务提交时执行额外的磁盘操作以回收空间,这可能会导致性能下降。
总之,PRAGMA auto_vacuum 和 WAL 模式之间没有直接冲突,但在某些情况下,它们可能会对性能产生一定影响。你需要根据你的应用程序需求和性能要求来选择合适的设置。