Add the ability to turn of calls to fsync() using the "synchronous" pragma.
Increased the default cache size from 100 to 2000 and made the "cache_size"
pragma persistent. (CVS 418)
FossilOrigin-Name: 414da4af1f4aebc3936ca339fbc7932add081912
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 4dd693c..3520a94 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.101 2002/03/03 23:06:02 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.102 2002/03/05 01:11:14 drh Exp $
*/
#include "sqlite.h"
#include "hash.h"
@@ -27,8 +27,8 @@
** The maximum number of in-memory pages to use for the main database
** table and for temporary tables.
*/
-#define MAX_PAGES 100
-#define TEMP_PAGES 25
+#define MAX_PAGES 2000
+#define TEMP_PAGES 500
/*
** Integers of known sizes. These typedefs might change for architectures