Index: debs/php5-xcache/debian/changelog |
— | — | @@ -1,3 +1,13 @@ |
| 2 | +xcache (1.3.0-1wm1) unstable; urgency=low |
| 3 | + |
| 4 | + * Upstream 1.3.0 |
| 5 | + * Changed defaults in config template to match |
| 6 | + 8-core boxes with lots of memory |
| 7 | + * -O3 build |
| 8 | + * Removed stripping |
| 9 | + |
| 10 | + -- Domas Mituzas <domas@wikimedia.org> Fri, 11 Sep 2009 20:40:00 +0300 |
| 11 | + |
2 | 12 | xcache (1.2.2-3) unstable; urgency=low |
3 | 13 | |
4 | 14 | * Implement clean target in debian/rules (Closes: #489739). |
Index: debs/php5-xcache/debian/rules |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
6 | 6 | DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
7 | 7 | |
8 | | -CFLAGS = -O2 -Wall -fno-strict-aliasing |
| 8 | +CFLAGS = -O3 -Wall -fno-strict-aliasing |
9 | 9 | |
10 | 10 | # Enable IEEE-conformant floating point math on alphas (not the default) |
11 | 11 | ifeq (alpha-linux-gnu,$(DEB_HOST_GNU_TYPE)) |
— | — | @@ -88,7 +88,7 @@ |
89 | 89 | dh_installdocs README AUTHORS THANKS |
90 | 90 | dh_installexamples xcache.ini Decompiler.class.php |
91 | 91 | dh_installchangelogs ChangeLog |
92 | | - dh_strip |
| 92 | + #dh_strip |
93 | 93 | dh_link |
94 | 94 | dh_compress |
95 | 95 | dh_fixperms |
Index: debs/php5-xcache/debian/xcache.ini.in |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | zend_extension = @EXTDIR@/xcache.so |
7 | 7 | |
8 | 8 | [xcache.admin] |
9 | | -xcache.admin.enable_auth = On |
| 9 | +xcache.admin.enable_auth = Off |
10 | 10 | # Configure this to use admin pages |
11 | 11 | ; xcache.admin.user = "mOo" |
12 | 12 | ; xcache.admin.pass = md5($your_password) |
— | — | @@ -18,20 +18,20 @@ |
19 | 19 | xcache.shm_scheme = "mmap" |
20 | 20 | ; to disable: xcache.size=0 |
21 | 21 | ; to enable : xcache.size=64M etc (any size > 0) and your system mmap allows |
22 | | -xcache.size = 16M |
| 22 | +xcache.size = 128M |
23 | 23 | ; set to cpu count (cat /proc/cpuinfo |grep -c processor) |
24 | | -xcache.count = 1 |
| 24 | +xcache.count = 8 |
25 | 25 | ; just a hash hints, you can always store count(items) > slots |
26 | | -xcache.slots = 8K |
| 26 | +xcache.slots = 2K |
27 | 27 | ; ttl of the cache item, 0=forever |
28 | | -xcache.ttl = 0 |
| 28 | +xcache.ttl = 600 |
29 | 29 | ; interval of gc scanning expired items, 0=no scan, other values is in seconds |
30 | | -xcache.gc_interval = 0 |
| 30 | +xcache.gc_interval = 300 |
31 | 31 | |
32 | 32 | ; same as aboves but for variable cache |
33 | | -xcache.var_size = 0M |
34 | | -xcache.var_count = 1 |
35 | | -xcache.var_slots = 8K |
| 33 | +xcache.var_size = 16M |
| 34 | +xcache.var_count = 4 |
| 35 | +xcache.var_slots = 2K |
36 | 36 | ; default ttl |
37 | 37 | xcache.var_ttl = 0 |
38 | 38 | xcache.var_maxttl = 0 |