XCache is a fast, stable PHP opcode cacher that has been proven and is now running on production servers under high load.
https://xcache.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
566 B
23 lines
566 B
|
|
ZEND_BEGIN_MODULE_GLOBALS(xcache) |
|
zend_bool cacher; /* true if enabled */ |
|
#ifdef HAVE_XCACHE_OPTIMIZER |
|
zend_bool optimizer; /* true if enabled */ |
|
#endif |
|
#ifdef HAVE_XCACHE_COVERAGER |
|
zend_bool coveragedumper; |
|
HashTable *coverages; /* coverages[file][line] = times */ |
|
#endif |
|
xc_stack_t *php_holds; |
|
xc_stack_t *var_holds; |
|
time_t request_time; |
|
long var_ttl; |
|
ZEND_END_MODULE_GLOBALS(xcache) |
|
|
|
ZEND_EXTERN_MODULE_GLOBALS(xcache) |
|
|
|
#ifdef ZTS |
|
# define XG(v) TSRMG(xcache_globals_id, zend_xcache_globals *, v) |
|
#else |
|
# define XG(v) (xcache_globals.v) |
|
#endif
|
|
|