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