Async I/O fits perfectly with my app: I don't need the durable guarantee. But I do need the ability to activate it with a pragma since it isn't a C app.
Are there plans to make async I/O available via pragma? Jim On 6/20/09, Dan <[email protected]> wrote: > > I think we have quite different approaches. > > The SQLite asynchronous IO backend is queueing IO, not queries. It > intercepts > the equivalent of the write() system call. It does not overload query > processing > in any way. The things on the write-queue are blobs of data to be > written > to specific offsets within the database file, not SQL queries. > > It's more complex than that of course. But the point is that the write- > queue is > a layer between SQLite and the OS, not between the user and SQLite. > > Dan. > > > _______________________________________________ > sqlite-users mailing list > [email protected] > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users > -- Software first. Software lasts! _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

