Index: /trunk/ChangeLog
===================================================================
--- /trunk/ChangeLog	(revision 398)
+++ /trunk/ChangeLog	(revision 399)
@@ -1,3 +1,10 @@
 2.0.0 2007-?-?
+Ini Settings Changes
+========
+ * new: xcache.experimental = Off
+
+ChangeLog
+========
+ * new: xcache.stat = On
  * could not show module info in admin page when XCache is the last module
  * wrong http auth realm
Index: /trunk/xcache.c
===================================================================
--- /trunk/xcache.c	(revision 398)
+++ /trunk/xcache.c	(revision 399)
@@ -2542,4 +2542,5 @@
 	STD_PHP_INI_BOOLEAN("xcache.cacher",                 "1", PHP_INI_ALL,    OnUpdateBool,        cacher,            zend_xcache_globals, xcache_globals)
 	STD_PHP_INI_BOOLEAN("xcache.stat",                   "1", PHP_INI_ALL,    OnUpdateBool,        stat,              zend_xcache_globals, xcache_globals)
+	STD_PHP_INI_BOOLEAN("xcache.experimental",           "0", PHP_INI_ALL,    OnUpdateBool,        experimental,      zend_xcache_globals, xcache_globals)
 #ifdef HAVE_XCACHE_OPTIMIZER
 	STD_PHP_INI_BOOLEAN("xcache.optimizer",              "0", PHP_INI_ALL,    OnUpdateBool,        optimizer,         zend_xcache_globals, xcache_globals)
Index: /trunk/xcache.ini
===================================================================
--- /trunk/xcache.ini	(revision 398)
+++ /trunk/xcache.ini	(revision 399)
@@ -41,5 +41,4 @@
 xcache.var_gc_interval =     300
 
-xcache.test =                Off
 ; N/A for /dev/zero
 xcache.readonly_protection = Off
@@ -60,4 +59,7 @@
 xcache.optimizer =           Off
 
+xcache.test =                Off
+xcache.experimental =        Off
+
 [xcache.coverager]
 ; per request settings
Index: /trunk/xcache_globals.h
===================================================================
--- /trunk/xcache_globals.h	(revision 398)
+++ /trunk/xcache_globals.h	(revision 399)
@@ -3,4 +3,5 @@
 	zend_bool cacher;      /* true if enabled */
 	zend_bool stat;
+	zend_bool experimental;
 #ifdef HAVE_XCACHE_OPTIMIZER
 	zend_bool optimizer;   /* true if enabled */
