Blame SOURCES/apcu.ini

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