1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +03:00

Mark the "async" module as deprecated as its functionality has been

superceded by WAL mode.  This closes ticket [f46ca03b55ae0e]

FossilOrigin-Name: 3d548db7eb14a4133afa6a94530f61fb3ef4a052
This commit is contained in:
drh
2012-11-29 14:26:11 +00:00
parent dac07e14c8
commit c5c0707970
3 changed files with 14 additions and 8 deletions

View File

@@ -1,3 +1,10 @@
NOTE (2012-11-29):
The functionality implemented by this extension has been superceded
by WAL-mode. This module is no longer supported or maintained. The
code is retained for historical reference only.
------------------------------------------------------------------------------
Normally, when SQLite writes to a database file, it waits until the write
operation is finished before returning control to the calling application.
@@ -161,4 +168,3 @@ the database, eliminating the bottleneck.
The functionality required of each of the above functions is described
in comments in sqlite3async.c.