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.
12 lines
495 B
12 lines
495 B
/* {{{ var object helpers */ |
|
#ifdef ZEND_ENGINE_2 |
|
xc_vector_t objects; /* in calc */ |
|
HashTable handle_to_index; /* in calc/store only */ |
|
zend_object_handle *object_handles; /* in restore only */ |
|
#endif |
|
const xc_entry_var_t *entry_var_src; /* in restore */ |
|
|
|
xc_vector_t class_names; /* in calc only */ |
|
HashTable class_name_to_index; /* in calc/store only */ |
|
zend_class_entry **index_to_ce; /* in restore only */ |
|
/* }}} */
|
|
|