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