Index: /trunk/xcache.c
===================================================================
--- /trunk/xcache.c	(revision 536)
+++ /trunk/xcache.c	(revision 537)
@@ -87,4 +87,9 @@
 
 static zend_bool xc_initized = 0;
+static time_t xc_init_time = 0;
+static long unsigned xc_init_instance_id = 0;
+#ifdef ZTS
+static long unsigned xc_init_instance_subid = 0;
+#endif
 static zend_compile_file_t *origin_compile_file = NULL;
 static zend_compile_file_t *old_compile_file = NULL;
@@ -2769,4 +2774,14 @@
 	php_info_print_table_row(2, "Modules Built", XCACHE_MODULES);
 	php_info_print_table_row(2, "Readonly Protection", xc_readonly_protection ? "enabled" : "N/A");
+	ptr = php_format_date("Y-m-d H:i:s", sizeof("Y-m-d H:i:s") - 1, xc_init_time, 1 TSRMLS_CC);
+	php_info_print_table_row(2, "Cache Init Time", ptr);
+	efree(ptr);
+
+#ifdef ZTS
+	snprintf(buf, sizeof(buf), "%lu.%lu", xc_init_instance_id, xc_init_instance_subid);
+#else
+	snprintf(buf, sizeof(buf), "%lu", xc_init_instance_id);
+#endif
+	php_info_print_table_row(2, "Cache Instance Id", buf);
 
 	if (xc_php_size) {
@@ -3003,4 +3018,9 @@
 		}
 		xc_initized = 1;
+		xc_init_time = time(NULL);
+		xc_init_instance_id = getpid();
+#ifdef ZTS
+		xc_init_instance_subid = tsrm_thread_id();
+#endif
 	}
 
