]> git.pld-linux.org Git - packages/php-pecl-memcache.git/blob - memcache.ini
Add pcntl dep to tests
[packages/php-pecl-memcache.git] / memcache.ini
1 ; Enable memcache extension module
2 extension=memcache.so
3
4 ; Options for the memcache module
5
6 ;  Whether to transparently failover to other servers on errors
7 ;memcache.allow_failover=1
8 ;  Data will be transferred in chunks of this size
9 ;memcache.chunk_size=32768
10 ;  Autocompress large data
11 ;memcache.compress_threshold=20000
12 ;  The default TCP port number to use when connecting to the memcached server
13 ;memcache.default_port=11211
14 ;  Hash function {crc32, fnv}
15 ;memcache.hash_function=crc32
16 ;  Hash strategy {standard, consistent}
17 ;memcache.hash_strategy=consistent
18 ;  Defines how many servers to try when setting and getting data.
19 ;memcache.max_failover_attempts=20
20 ;  The protocol {ascii, binary} : You need a memcached >= 1.3.0 to use the binary protocol
21 ;  The binary protocol results in less traffic and is more efficient
22 ;memcache.protocol=ascii
23 ;  Redundancy : When enabled the client sends requests to N servers in parallel
24 ;memcache.redundancy=1
25 ;memcache.session_redundancy=2
26 ;  Lock Timeout
27 ;memcache.lock_timeout = 15
28
29 ; Options to use the memcache session handler
30
31 ;  Use memcache as a session handler
32 ;session.save_handler=memcache
33 ;  Defines a comma separated of server urls to use for session storage
34 ;session.save_path="tcp://localhost:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
This page took 0.099522 seconds and 4 git commands to generate.