]> git.pld-linux.org Git - packages/php-pecl-apcu.git/blob - apcu.ini
panel: require any ext package
[packages/php-pecl-apcu.git] / apcu.ini
1 ; Enable APCu extension module
2 ; see INSTALL for description of the configurable options
3 extension=apcu.so
4
5 ; This can be set to 0 to disable APCu
6 apc.enabled=1
7
8 ; Setting this enables APCu for the CLI version of PHP
9 ; (Mostly for testing and debugging).
10 ;apc.enable_cli=0
11
12 ; Sets the path to text files containing caches to load from disk upon
13 ; initialization of APCu. preload_path should be a directory where each
14 ; file follows $key.data where $key should be used as the entry name
15 ; and the contents of the file contains serialized data to use as the value
16 ; of the entry.
17 ;apc.preload_path=
18
19 ; The size of each shared memory segment, with M/G suffixe
20 ;apc.shm_size=32M
21
22 ; The number of seconds a cache entry is allowed to idle in a slot in case
23 ; this cache entry slot is needed by another entry.
24 ;apc.ttl=0
25
26 ; The number of seconds that a cache entry may remain on the
27 ; garbage-collection list.
28 ;apc.gc_ttl=3600
29
30 ; If you begin to get low on resources, an expunge of the cache
31 ; is performed if it is less than half full. This is not always
32 ; a suitable way of determining if an expunge of the cache
33 ; should be per apc.smart allows you to set a runtime configuration
34 ; value which is used to determine if an expunge should be run
35 ; if (available_size < apc.smart * requested_size)
36 ;apc.smart=0
37
38 ; A "hint" about the number variables expected in the cache.
39 ; Set to zero or omit if you are not sure;
40 ;apc.entries_hint=4096
41
42 ; The mktemp-style file_mask to pass to the mmap module
43 apc.mmap_file_mask=/tmp/apc.XXXXXX
44
45 ; On very busy servers whenever you start the server or
46 ; modify files you can create a race of many processes
47 ; all trying to cache the same data at the same time.
48 ; By default, APCu attempts to prevent "slamming" of a key.
49 ; A key is considered "slammed" if it was the last key set,
50 ; and a context other than the current one set it ( ie. it
51 ; was set by another process or thread )
52 ;apc.slam_defense=1
53
54 ; Defines which serializer should be used
55 ; Default is the standard PHP serializer.
56 ;apc.serializer='default'
57
58 ; use the SAPI request start time for TTL
59 ;apc.use_request_time=1
60
61 ; Enables APCu handling of signals, such as SIGSEGV, that write core files
62 ; when signaled. APCu will attempt to unmap the shared memory segment in
63 ; order to exclude it from the core file
64 ;apc.coredump_unmap=0
65
66 ; RFC1867 File Upload Progress hook handler
67 ;apc.rfc1867=0
68 ;apc.rfc1867_prefix =upload_
69 ;apc.rfc1867_name=APC_UPLOAD_PROGRESS
70 ;apc.rfc1867_freq=0
71 ;apc.rfc1867_ttl=3600
This page took 0.060462 seconds and 3 git commands to generate.