[Catalyst-commits] r14221 -
trunk/examples/CatalystAdvent/root/2011/pen
caelum at dev.catalyst.perl.org
caelum at dev.catalyst.perl.org
Fri Dec 16 17:51:25 GMT 2011
Author: caelum
Date: 2011-12-16 17:51:24 +0000 (Fri, 16 Dec 2011)
New Revision: 14221
Modified:
trunk/examples/CatalystAdvent/root/2011/pen/sqlite_wal.pod
Log:
minor changes to article
Modified: trunk/examples/CatalystAdvent/root/2011/pen/sqlite_wal.pod
===================================================================
--- trunk/examples/CatalystAdvent/root/2011/pen/sqlite_wal.pod 2011-12-16 14:33:39 UTC (rev 14220)
+++ trunk/examples/CatalystAdvent/root/2011/pen/sqlite_wal.pod 2011-12-16 17:51:24 UTC (rev 14221)
@@ -6,8 +6,8 @@
L<WAL|http://www.sqlite.org/draft/wal.html>.
In a multi-process application such as a L<Catalyst> FastCGI instance, this
-feature greatly improves average write performance, at the cost of occasional
-writes taking slightly longer. See previously linked document for details.
+feature greatly improves performance, at the cost of occasional writes taking
+slightly longer. See previously linked document for details.
To turn it on, add C<on_connect_do "PRAGMA journal_mode=WAL;"> to your
L<Catalyst::Model::DBIC::Schema> configuration, a typical configuration might
@@ -24,6 +24,9 @@
</connect_info>
</Model::DB>
+Make sure that all clients that use this database are version C<3.7.0> of SQLite
+or above, and preferrably, that they execute this C<PRAGMA> when connecting.
+
=head2 AUTHOR
Caelum: Rafael Kitover <rkitover at cpan.org>
More information about the Catalyst-commits
mailing list