On Thu, Feb 21, 2013 at 11:21 AM, Matt Welland <[email protected]> wrote:

> Database Stats: 209478 pages, 1024 bytes/page, 113 free pages, UTF-8,
> delete mode
>

That "delete mode" notation on the end denotes the problem.  You need to
change your repository on the server to WAL mode.  Do this as follows:

    sqlite3 $repository 'pragma journal_mode=wal'

Or

    fossil rebuild $repository --pagesize 8192 --wal

The second method will take (much) longer, but it also changes the page
size from 1024 bytes to 8192 bytes, which won't make a huge difference but
will help some.

-- 
D. Richard Hipp
[email protected]
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to