Blame SOURCES/apcu.ini

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