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.
30 lines
713 B
30 lines
713 B
#ifndef __XCACHE_H |
|
#define __XCACHE_H |
|
#define XCACHE_NAME "XCache" |
|
#ifndef XCACHE_VERSION |
|
# define XCACHE_VERSION "4.0.0-dev" |
|
#endif |
|
#define XCACHE_AUTHOR "mOo" |
|
#define XCACHE_COPYRIGHT "Copyright (c) 2005-2014" |
|
#define XCACHE_URL "http://xcache.lighttpd.net" |
|
#define XCACHE_WIKI_URL XCACHE_URL "/wiki" |
|
|
|
#include "php.h" |
|
|
|
#if defined(E_STRICT) || defined(E_DEPRECATED) |
|
#define XCACHE_ERROR_CACHING |
|
#endif |
|
|
|
#ifdef HAVE_CONFIG_H |
|
#include <config.h> |
|
#endif |
|
#include "xcache/xc_shm.h" |
|
#include "xcache/xc_mutex.h" |
|
#include "xcache/xc_compatibility.h" |
|
|
|
extern zend_module_entry xcache_module_entry; |
|
#define phpext_xcache_ptr &xcache_module_entry |
|
|
|
extern zend_bool xc_test; |
|
|
|
#endif /* __XCACHE_H */
|
|
|