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