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