025f9e
; Enable APCu extension module
025f9e
extension = apcu.so
025f9e
025f9e
;	This can be set to 0 to disable APCu
025f9e
apc.enabled=1
025f9e
025f9e
;	Setting this enables APCu for the CLI version of PHP
025f9e
;	(Mostly for testing and debugging).
025f9e
;apc.enable_cli=0
025f9e
025f9e
;	Sets the path to text files containing caches to load from disk upon
025f9e
;	initialization of APCu. preload_path should be a directory where each
025f9e
;	file follows $key.data where $key should be used as the entry name
025f9e
;	and the contents of the file contains serialized data to use as the value
025f9e
;	of the entry.
025f9e
;apc.preload_path=
025f9e
025f9e
;	The size of each shared memory segment, with M/G suffixe
025f9e
;apc.shm_size=32M
025f9e
025f9e
;	The number of seconds a cache entry is allowed to idle in a slot in case
025f9e
;	this cache entry slot is needed by another entry.
025f9e
;apc.ttl=0
025f9e
025f9e
;	The number of seconds that a cache entry may remain on the
025f9e
;	garbage-collection list.
025f9e
;apc.gc_ttl=3600
025f9e
025f9e
;	If you begin to get low on resources, an expunge of the cache
025f9e
;	is performed if it is less than half full. This is not always
025f9e
;	a suitable way of determining if an expunge of the cache
025f9e
;	should be per apc.smart allows you to set a runtime configuration
025f9e
;	value which	is used to determine if an expunge should be run
025f9e
;	if (available_size < apc.smart * requested_size)
025f9e
;apc.smart=0
025f9e
025f9e
;	A "hint" about the number variables expected in the cache.
025f9e
;	Set to zero or omit if you are not sure;
025f9e
;apc.entries_hint=4096
025f9e
025f9e
;	The mktemp-style file_mask to pass to the mmap module 
025f9e
apc.mmap_file_mask=/tmp/apc.XXXXXX
025f9e
025f9e
;	On very busy servers whenever you start the server or
025f9e
;	modify files you can create a race of many processes
025f9e
;	all trying to cache the same data at the same time.
025f9e
;	By default, APCu attempts to prevent "slamming" of a key.
025f9e
;	A key is considered "slammed" if it was the last key set,
025f9e
;	and a context other than the current one set it ( ie. it
025f9e
;	was set by another process or thread )
025f9e
;apc.slam_defense=0
025f9e
025f9e
;	Defines which serializer should be used
025f9e
;	Default is the standard PHP serializer.
025f9e
;apc.serializer='php'
025f9e
025f9e
;	use the SAPI request start time for TTL
025f9e
;apc.use_request_time=1
025f9e
025f9e
;	Enables APCu handling of signals, such as SIGSEGV, that write core files
025f9e
;	when signaled. APCu will attempt to unmap the shared memory segment in
025f9e
;	order to exclude it from the core file
025f9e
;apc.coredump_unmap=0