File: package.xml

package info (click to toggle)
php-apc 3.1.13-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,208 kB
  • sloc: ansic: 10,815; php: 1,023; xml: 981; makefile: 75; sh: 44; pascal: 32
file content (1003 lines) | stat: -rw-r--r-- 38,102 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
 <name>APC</name>
 <channel>pecl.php.net</channel>
 <summary>Alternative PHP Cache</summary>
 <description>APC is a free, open, and robust framework for caching and optimizing PHP intermediate code.</description>
 <lead>
  <name>Rasmus Lerdorf</name>
  <user>rasmus</user>
  <email>rasmus@php.net</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Gopal Vijayaraghavan</name>
  <user>gopalv</user>
  <email>gopalv@php.net</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Xinchen Hui</name>
  <user>laruence</user>
  <email>laruence@php.net</email>
  <active>yes</active>
 </lead>
 <developer>
  <name>Ilia Alshanetsky</name>
  <user>iliaa</user>
  <email>ilia@prohost.org</email>
  <active>yes</active>
 </developer>
 <developer>
  <name>Marcus Börger</name>
  <user>helly</user>
  <email>helly@php.net</email>
  <active>no</active>
 </developer>
 <developer>
  <name>Sara Golemon</name>
  <user>pollita</user>
  <email>pollita@php.net</email>
  <active>no</active>
 </developer>
 <developer>
  <name>Brian Shire</name>
  <user>shire</user>
  <email>shire@php.net</email>
  <active>no</active>
 </developer>
 <developer>
  <name>Kalle Sommer Nielsen</name>
  <user>kalle</user>
  <email>kalle@php.net</email>
  <active>yes</active>
 </developer>
 <developer>
  <name>Pierre Joye</name>
  <user>pajoye</user>
  <email>pierre@php.net</email>
  <active>yes</active>
 </developer>
 <developer>
  <name>Anatoliy Belsky</name>
  <user>ab</user>
  <email>ab@php.net</email>
  <active>yes</active>
 </developer>
 <date>2012-09-03</date>
 <time>16:52:51</time>
 <version>
  <release>3.1.13</release>
  <api>3.1.0</api>
 </version>
 <stability>
  <release>beta</release>
  <api>stable</api>
 </stability>
 <license uri="http://www.php.net/license">PHP License</license>
 <notes>
- fix num. segfaults by revert rev. 326820 and issue reported in bug #69972
 </notes>
 <contents>
  <dir name="/">
   <file md5sum="d8778d844e157a2bb49e11858057050f" name="tests/apc_001.phpt" role="test" />
   <file md5sum="cc1dba4e429ff93dce1ca7dea01c2899" name="tests/apc_002.phpt" role="test" />
   <file md5sum="04c800594e9934cf8e15157e9bd4c52f" name="tests/apc_003.phpt" role="test" />
   <file md5sum="538f198f432614d9f2c0819fea5193a7" name="tests/apc_003b.phpt" role="test" />
   <file md5sum="43c8e1c89fad5bb25ded528837e63b2b" name="tests/apc_004.phpt" role="test" />
   <file md5sum="06432141cbc82df8ddde7fac52e9f65e" name="tests/apc_005.phpt" role="test" />
   <file md5sum="c5ce2ca0edfe0ba98f2460069e3361e8" name="tests/apc_006.phpt" role="test" />
   <file md5sum="b724592cd9629ab5e9dac9f1ef5d3e10" name="tests/apc_007.phpt" role="test" />
   <file md5sum="0674cbe2e88fe5c331bee3fbb1395d4f" name="tests/apc_008.phpt" role="test" />
   <file md5sum="4f15ba9d73035c6c0493f05e57ee70f0" name="tests/apc_009.phpt" role="test" />
   <file md5sum="6640964ee33a683b1693b545d1ff2ed0" name="tests/apc_010.phpt" role="test" />
   <file md5sum="611e5e725d57fcca216bf79778238290" name="tests/apc53_001.phpt" role="test" />
   <file md5sum="1cd474d5a3567601d66d1078699fd587" name="tests/apc53_002.phpt" role="test" />
   <file md5sum="3d863bb88c5f2624320b7b72e368d668" name="tests/apc53_003.phpt" role="test" />
   <file md5sum="128e9590ff8d3d0791a1ef9ce9c078f5" name="tests/apc53_004.phpt" role="test" />
   <file md5sum="c710a33310dfacef4d51cb721855857e" name="tests/apc53_005.phpt" role="test" />
   <file md5sum="5001c1cd063b4c2032189fcb74d04644" name="tests/apc_bin_001.phpt" role="test" />
   <file md5sum="c992d44557b849a10984b089419d2e01" name="tests/apc_bin_002-1.inc" role="test" />
   <file md5sum="409cadd9efc9d863421b15d63d8c6515" name="tests/apc_bin_002-2.inc" role="test" />
   <file md5sum="2667d74094dac9e366020c11b3a9bd47" name="tests/apc_bin_002.phpt" role="test" />
   <file md5sum="1bb542e50a5e6eb06b54a89ceaa81976" name="tests/iterator_001.phpt" role="test" />
   <file md5sum="7ee077f992cd81940f74b5f1b0e885c0" name="tests/iterator_002.phpt" role="test" />
   <file md5sum="eccbaee4d483213ee8ba0583c705224b" name="tests/iterator_003.phpt" role="test" />
   <file md5sum="4ec172b4fc8ed2f45f3d7426865a0db5" name="tests/iterator_004.phpt" role="test" />
   <file md5sum="eec4bf6bdfa4936cb122845216cad7e0" name="tests/iterator_005.phpt" role="test" />
   <file md5sum="a7d87e77baab1f1bdfdbd9a363ed8557" name="tests/iterator_006.phpt" role="test" />
   <file md5sum="82a40b37c545631cd87c3e1e421353b5" name="tests/iterator_007.phpt" role="test" />
   <file md5sum="a71f62ed1d34f25f37fca7ad98543012" name="tests/bug38779.phpt" role="test" />
   <file md5sum="91cc734054543eeabbf3ce38fe214b0b" name="tests/bug61398.phpt" role="test" />
   <file md5sum="6009671fd93d3d84d5bfbd384fcd4c71" name="tests/bug61398_2.phpt" role="test" />
   <file md5sum="f9d9a8ae1520d06ec9a0a74e32019f1f" name="tests/bug62757.phpt" role="test" />
   <file md5sum="f96cd546ed2de6148e351a979291f76b" name="tests/bug62765.phpt" role="test" />
   <file md5sum="03ce4aa029ba86651020da2020b02a81" name="tests/bug62802.phpt" role="test" />
   <file md5sum="d8b009a8a5ce00bb5220ed32ba55594e" name="tests/apc54_001.phpt" role="test" />
   <file md5sum="293c76cb4a5ef688219d9496807ff352" name="tests/apc54_002.phpt" role="test" />
   <file md5sum="3b0a6eaa251e014f60006990f7afb47f" name="tests/apc54_003.phpt" role="test" />
   <file md5sum="6221185b3e17c213af667685a27f1a86" name="tests/apc54_004.phpt" role="test" />
   <file md5sum="7e3c81195122d4eea4fccffdb59f1a45" name="tests/apc54_005.phpt" role="test" />
   <file md5sum="309c5f2b4f4af91417a198523142b85e" name="tests/apc54_006.phpt" role="test" />
   <file md5sum="219cb35ce42295659d1a7a4f12fc94cb" name="tests/apc54_007.phpt" role="test" />
   <file md5sum="6cb796dbc50654887f23f6d615ede6c1" name="tests/apc54_008.phpt" role="test" />
   <file md5sum="2c1714c286c52a8d03c531164509f1ed" name="tests/apc54_009.phpt" role="test" />
   <file md5sum="1eec4bb0f7f5d351d5d70541707ffc9d" name="tests/apc54_010.phpt" role="test" />
   <file md5sum="5ecc16c9d86386d57cd7411de5aa46fd" name="tests/apc54_011.phpt" role="test" />
   <file md5sum="583e447b3f964f0b5c546f0d285449c4" name="tests/apc54_012.phpt" role="test" />
   <file md5sum="04f88af2633da4e5ff9a1b5b6d86d756" name="tests/apc54_013.phpt" role="test" />
   <file md5sum="c868c8ebf6059f404d73fa44bcb81a18" name="tests/apc54_014.phpt" role="test" />
   <file md5sum="ad79da008ff27e6b453a6b2ff46432f0" name="tests/apc54_015.phpt" role="test" />
   <file md5sum="4882b5e278c8cd3a42845adc637d6c93" name="tests/apc54_016.phpt" role="test" />
   <file md5sum="c95daacef449808df8e82527b1d3c35f" name="tests/apc54_017.phpt" role="test" />
   <file md5sum="0f427609cc7bb207e010d40cc0b36a5d" name="tests/apc54_018.phpt" role="test" />
   <file md5sum="b7085724c3c490705cd2246085b5210e" name="tests/apc54_019.phpt" role="test" />
   <file md5sum="26a55c9f7b0df6aadf2c8afac7404980" name="tests/apc54_020.phpt" role="test" />
   <file md5sum="e6b760317d74aaf6c283c56f3dd1a689" name="tests/apc54_021.phpt" role="test" />
   <file md5sum="d83bb03e17458cd05063b20820a1e8fd" name="tests/apc54_bug62699_2.phpt" role="test" />
   <file md5sum="5fbdb93f3419ccfbb397c46723efcc8c" name="tests/apc54_bug62699.phpt" role="test" />
   <file md5sum="5fdbbba164f64992abee7b08b049d86a" name="tests/apc54_error_010_2.phpt" role="test" />
   <file md5sum="d78cafd6b6d5df4ebaf041cb3902962b" name="tests/apc54_error_010.phpt" role="test" />
   <file md5sum="56ac4e43b7fd6c38d8d9f8429d62595d" name="tests/server_test.inc" role="test" />
   <file md5sum="92e7b033fac8b625c6ad52e21d1222bf" name="tests/php_5_3_ns.inc" role="test" />
   <file md5sum="6ecba4154b6bd6f8703000f5198710cc" name="tests/skipif.inc" role="test" />
   <file md5sum="82180b525b9423f50c7fbfe2b61d0cd4" name="tests/data/abc.data" role="data" />
   <file md5sum="ed9a4192d7ab7f953856b92c5e689cf5" name="CHANGELOG" role="doc" />
   <file md5sum="a7f7035e9a077f650a15926ece5b7fb6" name="INSTALL" role="doc" />
   <file md5sum="dd34a70236f008af999de817b93a5e3a" name="LICENSE" role="doc" />
   <file md5sum="eea150699d3dffb2cdf7d243854189d7" name="NOTICE" role="doc" />
   <file md5sum="19a56a46925a8196705c34e1d9878a07" name="TODO" role="doc" />
   <file md5sum="4199ad4e832aee44384c4d0964c4daef" name="TECHNOTES.txt" role="doc" />
   <file md5sum="4540464b1b969ef60284826577128da6" name="apc.c" role="src" />
   <file md5sum="5407bb17e437bc55185f4ee92a9dccf6" name="apc.h" role="src" />
   <file md5sum="f74ae6045fb2704cf3920191fd4aaa3d" name="apc_bin.c" role="src" />
   <file md5sum="2a471d33e6073a488c58423c4afa9118" name="apc_bin.h" role="src" />
   <file md5sum="f5f796f6d728728715d9415ef1ab3e26" name="apc_cache.c" role="src" />
   <file md5sum="59a8b9b442a39c40e48c8f6fe1371e4f" name="apc_cache.h" role="src" />
   <file md5sum="fcdf9467968b3973c46a9833a740ebe9" name="apc_compile.c" role="src" />
   <file md5sum="8c6738ba12abc1a1a620a33ffab561cc" name="apc_compile.h" role="src" />
   <file md5sum="c4c46f96ed94051722cb7bd7cc6a11ac" name="apc_debug.c" role="src" />
   <file md5sum="9ae92820dbe87de79112642e9d88b1a8" name="apc_debug.h" role="src" />
   <file md5sum="a662a2816fd28d73ba9f4a176505b538" name="apc_fcntl.c" role="src" />
   <file md5sum="fc1133b9f93f8d756146aff47e02644c" name="apc_fcntl.h" role="src" />
   <file md5sum="dfb1941a4e6782d08e72f6273032e467" name="apc_globals.h" role="src" />
   <file md5sum="eaac82c180900a2008162cb5272e15b8" name="apc_lock.h" role="src" />
   <file md5sum="cf7c9d0c7807a32d314cb2519953315a" name="apc_main.c" role="src" />
   <file md5sum="fbe1d110e5c3e53144617291d279705f" name="apc_main.h" role="src" />
   <file md5sum="7a8be65b98fb812e88d3e58b81787ef6" name="apc_mmap.c" role="src" />
   <file md5sum="e6ce0f97275d5b248427c43b5e57612b" name="apc_mmap.h" role="src" />
   <file md5sum="bb4642a3b05ef6a015cb8e92ebf9d430" name="apc_php.h" role="src" />
   <file md5sum="976283da87a44bf02a89c313a73de69d" name="apc_php_pcre.h" role="src" />
   <file md5sum="281d1b8018049b9954171183ee5d7413" name="apc_pthreadmutex.c" role="src" />
   <file md5sum="db38b495ef63c2879d5f32de1b6ed555" name="apc_pthreadmutex.h" role="src" />
   <file md5sum="09b130ce454f15b82cbc0e417025fd80" name="apc_pthreadrwlock.c" role="src" />
   <file md5sum="130fea3f1122f80a180e6110fa5297b5" name="apc_pthreadrwlock.h" role="src" />
   <file md5sum="60d8d12961ea8ba6d6be58b855e81a72" name="apc_sem.c" role="src" />
   <file md5sum="4feb36b92e1509619ebec1fc78b7c31f" name="apc_sem.h" role="src" />
   <file md5sum="230377860c74a92d2df543dca4a0606f" name="apc_shm.c" role="src" />
   <file md5sum="8d0f9fe1a7530d226e956ce27435cdb4" name="apc_shm.h" role="src" />
   <file md5sum="ebdc7ec08ff13a589229055562f871cb" name="apc_sma.c" role="src" />
   <file md5sum="8831f4dadeaa82d781469d2337040fa4" name="apc_sma.h" role="src" />
   <file md5sum="2d18b9a8dca519c5a8289965898a0f73" name="apc_spin.c" role="src" />
   <file md5sum="894e959387198afd4600562876405313" name="apc_spin.h" role="src" />
   <file md5sum="01b96d8db57682bd741fd109a1c64987" name="apc_windows_srwlock_kernel.c" role="src" />
   <file md5sum="4e92c45486eb6a4ea434687afac2673d" name="apc_windows_srwlock_kernel.h" role="src" />
   <file md5sum="2dd820b3b9d223f9b445300e0f02bf49" name="apc_stack.c" role="src" />
   <file md5sum="6210ec2a1793d7633a7b317536f88930" name="apc_stack.h" role="src" />
   <file md5sum="0105f0cd5972ac96fa7cc2e7b1e3e2af" name="apc_string.h" role="src" />
   <file md5sum="aa30aa2b5941d66c41f3acc2a15f2646" name="apc_string.c" role="src" />
   <file md5sum="76d35a266212c7a71e3d54cdb106b19e" name="apc_zend.c" role="src" />
   <file md5sum="c2ddc2350113f47de8d7bd73df48b1fd" name="apc_zend.h" role="src" />
   <file md5sum="6f08d8a15828bc4053fd29e72e9c1dd3" name="apc_signal.c" role="src" />
   <file md5sum="ede44dd8af12d3a9e3a26240dc77dbb1" name="apc_signal.h" role="src" />
   <file md5sum="426816a7986d0b3b8c1bd44981199bfa" name="apc_iterator.c" role="src" />
   <file md5sum="6f353b27b22e901bb2482ddbfe1f155a" name="apc_iterator.h" role="src" />
   <file md5sum="8c38f545890cbe34b064dac7bac2d571" name="apc_pool.c" role="src" />
   <file md5sum="b21f09669a414a874ef91d3f5a0d8918" name="apc_pool.h" role="src" />
   <file md5sum="c425d2646e37590bdec678490648f60a" name="config.m4" role="src" />
   <file md5sum="ce19b60cb46446fd14a1e7bd610affab" name="config.w32" role="src" />
   <file md5sum="0d9d45d16d42f0eeafe525ca4850fdc0" name="php_apc.c" role="src" />
   <file md5sum="026467d8ad731b779c3146489084a7f4" name="php_apc.h" role="src" />
   <file md5sum="c0df9bd11d18a5b45a5e45458702def4" name="pgsql_s_lock.c" role="src" />
   <file md5sum="b60f9504f82c958966c885fadc97fd15" name="pgsql_s_lock.h" role="src" />
   <file md5sum="bbc2c54389717c4519befa7fbd68f5f2" name="apc_fcntl_win32.c" role="src" />
   <file md5sum="6b2d35b37dd6d39c657427280afd7dea" name="apc_rfc1867.c" role="src" />
   <file md5sum="40c671fefc9a8ad17dca105c16b1cdcb" name="apc_serializer.h" role="src" />
   <file md5sum="6be9b902f07aadca243dbf88a3e7f30c" name="apc.php" role="php" />
  </dir>
 </contents>
 <dependencies>
  <required>
   <php>
    <min>5.1.0</min>
   </php>
   <pearinstaller>
    <min>1.4.0</min>
   </pearinstaller>
  </required>
 </dependencies>
 <providesextension>apc</providesextension>
 <extsrcrelease>
  <configureoption default="no" name="enable-apc-debug" prompt="Enable internal debugging in APC" />
  <configureoption default="no" name="enable-apc-filehits" prompt="Enable per request file info about files used from the APC cache" />
  <configureoption default="no" name="enable-apc-spinlocks" prompt="Enable spin locks (EXPERIMENTAL)" />
  <configureoption default="no" name="enable-apc-memprotect" prompt="Enable memory protection (EXPERIMENTAL)" />
  <configureoption default="no" name="enable-apc-pthreadmutex" prompt="Enable pthread mutexes (default)" />
  <configureoption default="yes" name="enable-apc-pthreadrwlocks" prompt="Enable pthread read/write locks (EXPERIMENTAL)" />
 </extsrcrelease>
 <changelog>
  <release>
   <date>2012-08-16</date>
   <version>
    <release>3.1.12</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Fixed bug (apc_bin_dump doesn&apos;t swizzle bucket arKey in HashTable) (Laruence)
- Fixed bug #62825 (php carshed OR return PHP Fatal error when used apc_bin_dump after apc_store) (Laruence)
- Fixed bug due to Conditional &quot;jump or move depends on uninitialised value(s)&quot; in apc_op_ZEND_INCLUDE_OR_EVAL and apc_bin_dump (Laruence)
- Fixed bug #62802 (Crash when use apc_bin_dump/load) (Laruence)
- Fixed bug #62757 (php-fpm carshed when used apc_bin_dumpfile with apc.serializer) (Laruence)
- Fixed bug #62765 (apc_bin_dumpfile report Fatal error when there is &quot;goto&quot; in function) (Laruence)
- Fixed bug #61133 (segfault in tests/apc_bin_002.phpt) (Laruence)
- Fixed handling of userspace stream wrappers simulating file inclusion/requiring (Anatoliy, Rasmus)
- Fixed bug #62699 trait aliases and precedences handling (Anatoliy)
- Added cli built-in server tests (Anatoliy)
- Fixed filter regex freeing on request shutdown (Anatoliy)
- Fixed interned strings storage freeing on module shutdown (Anatoily)
- Fixed bug #61742 preload_path does not work due to incorrect string length (Anatoliy)
- Fixed several memory leaks it APCIterator (Anatoliy)
- Fixed potential overflows in bin dumps (Anatoliy)
   </notes>
  </release>
  <release>
   <date>2012-07-19</date>
   <version>
    <release>3.1.11</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- In cli mode with stat=0 and canonicalize=1 make sure cwd is searched
- Fixed bug #62302 apc.include_once_override=1 made everything crash
- Fixed bug #59829 APC should not try to canonicalize file URLs 
- Fixed bug #62398 stat=0 replaces an include/require filename with empty string
- Fixed bug #61799 Typo in &apos;SEARCH&apos; regex of apc.php
- Fixed bugs #61824,61912,61956,62190,62230 ext/DOM memory corruption (cschneid)
- Partial fix for bug #61360 concerning concerning serializer leak (anatoliy)
- Partial fix for bug #61360 concerning rwlock atribute leak (Anatoliy)
   </notes>
  </release>
  <release>
   <date>2012-04-11</date>
   <version>
    <release>3.1.10</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Add PHP 5.4 support (Dmitry, Anatoliy, Pierre)
- Fixed bug #22679: Fix apc_bin_dump for constants. Use IS_CONSTANT_TYPE_MASK to handle all the constants, including the unqalified ones (instead of ~IS_CONSTANT_INDEX check)
- Fixed bug #23822, php crashes on apache restart
   </notes>
  </release>
  <release>
   <date>2011-05-15</date>
   <version>
    <release>3.1.9</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Fix regression introduced in 3.1.8 (#22687)
   </notes>
  </release>
  <release>
   <date>2011-05-03</date>
   <version>
    <release>3.1.8</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- Windows read-write locks support on Windows XP or later and Windows Win7
  or later (use php_apc-xp.dll or php_apc-win7.dll)
- Fix variable type check in user cache update
- Make warnings that user cannot do anything about debug messages
- Fixed bug #21400 (Minor memory leak in MINFO)
- Fixed bug #18890: Ensure that --enable-apc-debug=no disables debug mode.
- Fixed bug #19459: check for expiry while looping through the iterator slots
   </notes>
  </release>
  <release>
   <date>2011-01-11</date>
   <version>
    <release>3.1.7</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- pthread read-write locks support
- apc.serializer hooks, export apc_serializer.h as an API
- Fix regression bug #20529: Look up files in CWD
- Pool allocator fixes for large allocations
- trunk compat fixes (Kalle)
- ZTS fixes (Pierre, Hirokawa) 
- Readability and warning fixes (Pierre, Kalle)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>2.0.0</release>
    <api>2.0.0</api>
   </version>
   <date>2003-07-01</date>
   <notes>
Complete rework.
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>2.0.1</release>
    <api>2.0.0</api>
   </version>
   <date>2003-07-01</date>
   <notes>
Win32 support added.
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>2.0.2</release>
    <api>2.0.0</api>
   </version>
   <date>2004-03-12</date>
   <notes>
Fixed non-existant class bug.
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.0</release>
    <api>3.0.0</api>
   </version>
   <date>2005-07-05</date>
   <notes>
PHP-5.1 Support and numerous fixes
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.1</release>
    <api>3.0.0</api>
   </version>
   <date>2005-07-05</date>
   <notes>
PHP4 build fix
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.2</release>
    <api>3.0.0</api>
   </version>
   <date>2005-07-05</date>
   <notes>
Default to mmap and add a better error message for shmget failures
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.3</release>
    <api>3.0.0</api>
   </version>
   <date>2005-07-07</date>
   <notes>
Fix compile problem against PHP 5.0.x
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.4</release>
    <api>3.0.0</api>
   </version>
   <date>2005-07-18</date>
   <notes>
Add win32 support from Edin.
Add --with-apxs switch to work around problem when loading APC into Apache binary compiled with LFS switches
A couple of other minor fixes.
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.5</release>
    <api>3.0.0</api>
   </version>
   <date>2005-07-27</date>
   <notes>
Make it easier for sapis that only populate file_handle-&gt;filename to use APC. (Rasmus)
Support extensions such as bcompiler that need to hook into compile_file. (Val)
Ralf Becker&apos;s apcgui code has now become the default apc.php status page. (Ralf, Rasmus, Ilia)
Segfault in cache cleanup code (Ilia, Rasmus)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.6</release>
    <api>3.0.0</api>
   </version>
   <date>2005-07-30</date>
   <notes>
Added apc.php to package.xml file.
Track per-entry memory usage. (Val)
Various apc.php fixes and enhancements. (Ralf, Ilia, Rasmus)
fcntl locking robustness fixes. (Rasmus)
Shared read-locks where possible. (Rasmus)
Added file_update_protection configuration parameter. (Rasmus)
Windows ZTS fixes (Frank)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.7</release>
    <api>3.0.0</api>
   </version>
   <date>2005-08-16</date>
   <notes>
Fix to apc.php to show final segment in frag chart. (Ilia)
A couple of win32 fixes. (Frank)
Add apc.enable_cli ini directive. (Rasmus)
Add test cases. (Marcus)
Fix apc_define_constants() bug - http://pecl.php.net/bugs/5084 (Rasmus)
Simplify user cache handling by removing the user_cache_stack (Rasmus)
Fix apc_fetch() memory corruption (Andrei,Rasmus)
Added apc.max_file_size INI setting that allows exclusion of large files from being cached. Default file size limit, 1 megabyte. (Ilia)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.8</release>
    <api>3.0.0</api>
   </version>
   <date>2005-08-24</date>
   <notes>
Fix invalid free in globals destructor introduced in 3.0.7 (Rasmus)
Cache corruption fix in cache-full cleanup code (Gopal)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.9</release>
    <api>3.0.0</api>
   </version>
   <date>2006-03-04</date>
   <notes>
Eliminate rand() call when slam_defense is not set (Rasmus)
Fix for __isset problem (Gopal)
Rewrite allocator from a &quot;best fit&quot; to a &quot;next fit&quot; algorithm (Rasmus)
Added a Cache Full counter so we have an idea how many times the segment has filled up causing an expunge (Rasmus)
Report back the correct number of available bytes in the segment instead of the allocated bytes. (Rasmus)
Add cache busy flag which is set when an expunge is underway (Rasmus)
Add automatic serialization of objects in apc_store() (Marcus)
64-bit .ini flag fix (Rasmus)
Static members fix (Gopal)
sma_cleanup() mem leak fix (Rasmus)
Fix for http://pecl.php.net/bugs/5311 (Rasmus)
Fix autoglobals JIT bug (Gopal)
Fix instance bug (Gopal)
Add a lock cleanup safety net to request shutdown (Rasmus)
Fix apc.slam_defense edge-case bug (Rasmus)
User entry memory usage tracking support (Ilia)
Allow keys used in apc_store/apc_fetch/apc_delete to be binary safe and prevent conflicts between keys that are found at the start of other keys. (Ilia)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.10</release>
    <api>3.0.0</api>
   </version>
   <date>2006-03-11</date>
   <notes>
* Add apc.stat ini flag which defaults to 1.  If set to 0, the main script and any fullpath
  includes will not be stat&apos;ed for any changes.  You will have to restart the server if you
  change anything.  This mode increases performance quite a bit, especially if you have a
  lot of includes.

* Get rid of the lock safety net hack I added in 3.0.9.  It seems to cause more problems
  than it solves.  I&apos;ll need to revisit locking and signal handling at some point soon.
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.11</release>
    <api>3.0.0</api>
   </version>
   <date>2006-08-16</date>
   <notes>
* Made --enable-apc-mmap the default compile option (for real this time)

* Add an optional flag to apc_cache_info() and some apc.php tweaks to make it
  only fetch header information to make it useful when you have tens of
  thousands of entries.  (Brian Shire)

* 64-bit fixes (George)

* Don&apos;t mix Full Path and Inode keys (George)

* Override ZEND_INCLUDE_OR_EVAL opcode (when possible) to speed up use of
  require_once() and include_once() statements. (Sara)

* Add a non-blocking write_lock for cache inserts.  This is a better approach
  to prevent cache slams and deprecates the slam_defense setting. (Rasmus)

* A bit of work on the optimizer.  (Sara)

* Various memory issues resolved. (Gopal)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.12</release>
    <api>3.0.0</api>
   </version>
   <date>2006-09-04</date>
   <notes>
* Fix stray debug message

* Work on the optimizer - still not stable (Gopal, Ilia, Sara)

* Performance boost - Replace multiple loops over the opcode
  array with a single loop for copying, jump fixups and auto
  global pre-fetches. (Gopal)

* Perform fetch_global checks only in php5 and only if 
  auto_globals_jit is enabled. (Gopal)

* Fix bug #8579 - scrub php4 classes&apos; function_table and default
  properties before inserting into cache. (Gopal)

* Fix bug #8606 - ZEND_FETCH_GLOBAL is not an opcode, but is a 
  op1-&gt;type.  The opcodes applicable are ZEND_FETCH_R and 
  ZEND_FETCH_W. (Gopal)

* PHP 5.2 Compatibility (Gopal)

* Make the include_once override optional - default off (Sara)

* Fixed crash when apc run in CLI, but enable_cli is off. (Ilia)

* Ensure that the apc_globals-&gt;cache_stack is cleared before the 
  shm cache is destroyed. Fixes segfault for corner-case i.e request
  shutdown (apc_deactivate) is not called before module shutdown 
  calls (php_apc_shutdown_globals)  (Gopal)

* TSRM fixes (ensure ts_free_id before apc.so is dlclosed) (Gopal)

* Fix memory leak of apc_cache_info_t-&gt;deleted_list (Gopal)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.12p1</release>
    <api>3.0.0</api>
   </version>
   <date>2006-09-05</date>
   <notes>
* The only change here is a trivial PHP 4 build fix.
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.12p2</release>
    <api>3.0.0</api>
   </version>
   <date>2006-09-05</date>
   <notes>
* Let&apos;s get the version number right.  3.0.12p2 now.
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.13</release>
    <api>3.0.0</api>
   </version>
   <date>2007-02-24</date>
   <notes>
* PHP 5.2 file upload progress tracking support (Rasmus)
* Pthread mutex and spin locks (Shire)
* Recursive zval support for apc_fetch/_store (Shire, Gopal)
* apc.stat_ctime flag for ctime checks (Rasmus)
* Multiple key fetches with apc_fetch (Shire)
* Canary checks for shm memory deallocation (Gopal)
* Add hooks for external optimizer (Shire)
* Obsolete and remove apc optimizer (Gopal)
* APC info changes - cache insert rate, hit and miss rates (Shire)
* Fix apc_load_constants (Gopal)
* Rewrite dump opcode code to use vld (Gopal)
* Use apc_[ewn]print functions for error reporting (Shire) 
* Auto global fixes and refactoring (Gopal, Shire)
* Fix memory leaks in object serialization (Ilia)
* Memory cleanup code for destructor order (Gopal)
* Win32 build fixes (Ilia, Wez)
* ZTS and Php 4 build fixes (Bjori)
* Add apc_add() function (Rasmus)
* Add optional limited flag to apc_sma_info() (Rasmus)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.14</release>
    <api>3.0.0</api>
   </version>
   <date>2007-04-02</date>
   <notes>
* Build fix (Shire)
* Don&apos;t hook the upload hook if APC is disabled (Rasmus)
* Local shadow cache support (Gopal)
* Avoid uneccessary loops over op_arrays for &quot;known&quot; auto-globals (Gopal)
* Fix apc_add() to overwrite timed out user entries (Rasmus)
* Fix double inclusion of files with conditional classes in php4 (Gopal)
* Allocator fixes to reduce fragmentation (Gopal)
   </notes>
  </release>
  <release>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <version>
    <release>3.0.15</release>
    <api>3.0.0</api>
   </version>
   <date>2007-10-18</date>
   <notes>
* Eliminate a per-request time() syscall (Rasmus)
* Added rfc1867 prefix, name, and freq ini options (Shire)
* Allow deletion of individual user cache entries via apc.php (Sara)
* Fix overzealous cleanup during RSHUTDOWN (Gopal)
* Fix memory alignment and locking issues (Gopal)
* Make apc_compile insert/replace entries (Shire)
* Make mixed inheritance recompile &amp; cache afresh  (Gopal)
* Make nostat mode search include_path for canonicalization (Gopal)
* ZTS &amp; other compile fixes (Gopal, Edin, Shire)
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.16</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2008-03-26</date>
   <notes>
* Fix for longstanding cache-full crash (Christian Seiler)
  http://news.php.net/php.pecl.dev/4951 for the details
* Added optional shm unmap on a fatal signal feature (Lucas Nealan)
* Added PTHREAD_MUTEX_ADAPTIVE_NP option pthread locks (Paul Saab)
* Minor cleanups (Lucas Nealan)
* Added configure option to enable apc_cache_info(&apos;filehits&apos;) (Shire)
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.17</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2008-03-29</date>
   <notes>
* Crash fixes
* Fix apc_add() cache expunge bug (Rasmus)
* Added parameter to apc_fetch to determine success/failure when fetching booleans (shire)
* Fix misc. memleaks (shire)
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.18</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2008-03-29</date>
   <notes>
- Revert apc_expunge_cb bug-fix
- Misc memleaks
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.19</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2008-05-15</date>
   <notes>
- Safe-mode and fast-cgi fixes
- Fix double-free of builtin_functions
- php 5.3 fixes
   </notes>
  </release>
  <release>
   <version>
    <release>3.1.1</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2008-12-12</date>
   <notes>
- PHP4 compatibilty break
- apc_pool allocator (Gopal) 
- doubly-linked sma allocator (Shire)
- php 5.3 gc compatibility (Gopal)
- APCIterator for easy access (Shire)
- apc_delete_file (Shire)
- apc_inc/apc_dec/apc_cas functions (Shire)
- apc.canonicalize (Gopal)
- apc.preload_path (Gopal)
- apc.rfc1867_ttl  (Shire)
- apc.file_md5     (Shire)
- consolidate locking macros (Shire)
- remove futex/TSRM locks  (Shire)
- non-blocking semaphore locks  (Shire)
- zval* object rework (Gopal)
   </notes>
  </release>
  <release>
   <version>
    <release>3.1.2</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2008-12-12</date>
   <notes>
- pecl package.xml/build fixes (bjori)
   </notes>
  </release>
  <release>
   <version>
    <release>3.1.3</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2009-08-13</date>
   <notes>
- pecl package.xml/build fixes (bjori)
- 5.3 support + test-cases (Gopal)
- Lazy loading support (Shire)
- Fix PCRE module init order issues (Shire)
- APCIterator fixes (Shire)
- Cache slam checks (Gopal)
- ZEND_JMP_SET support (Shire)
- apc.use_request_time option (shire)
- apc.php hostname fixes (Shire)
- memprotect framework (Gopal)
- Win32 build-fixes (Kalle)
   </notes>
  </release>
  <release>
   <version>
    <release>3.1.3p1</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2009-08-14</date>
   <notes>
- fix pecl build / package.xml (Gopal)
   </notes>
  </release>
  <release>
   <version>
    <release>3.1.4</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2010-08-05</date>
   <notes>
- Windows builds may now have filehits and memory protection if enabled (Kalle)
- Renamed the memory protection configure option to --enable-apc-memprotect (Kalle, Shire)
- ZTS fixes and optimizations (Kalle, Felipe)
- Win32 stat support (Pierre, Kalle) 
- Added support for interned strings, run-time caches and Zend Engine 2.4 (Dmitry)
- Added apc_exists() (Rasmus)
- Fixed potential XSS in apc.php, CVE-2010-3294 (Pierre, Matt Chapman)
- Fixed pecl bug #17597 (keys with embedded NUL) (Gopal)
- Fixed pecl bug #17650 (Fix goto jump offsets) (Gopal)
- Fixed pecl bug #17527 (Standardized error reporting) (Gopal, Paul Dragoonis)
- Fixed pecl bug #17089 (Scrub the constant table of all inherited members before caching) (Gopal)
- Fixed pecl bug #16860 (files can be included more than once even when include/require_once are used) (Pierre)
- Fixed pecl bug #16717 (apc_fetch dies after 1 hour, regardless of ttl settings) (Kalle)
- Fixed pecl bug #17597 (apc user cache keys with embedded NULs) (Gopal)
- Fixed pecl bug #13583 (apc upload progress fixes) (Gopal)
   </notes>
  </release>
  <release>
   <version>
    <release>3.1.5</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <date>2010-11-01</date>
   <notes>
- Reduce usage of CG(open_files) (mkoppanen at php dot net)
- Add support for php-trunk, new op code, new internals string format, etc. (Dmitry)
- apc_debug are not compiler-valid NOPs for non-debug builds

- Fixed relative paths resolution when ./foo/a.php or ../foo/a.php (or similar path) 
  are used. &apos;foo/a.php&apos; path behaviors remain unchanged
- Fixed a possible memory corruption, when partial path cannot be resolved 
  by expand_filepath()
- Fixed notices in apc.php (Tomasz Krawczyk)

- Fixed Bug #17978: standardize user keys to include NULs in identifier_len. Z_STRLEN_P() doesn&apos;t, so add to it.
- Fixed bug #16966, apc produces tons of warnings &quot;Unable to allocate memory for pool&quot;.

- Added --enable-apc-debug configuration argument to enable debugging (Kalle)
- Added support for internal debugging on Windows (Kalle)
- ZTS optimizations (Kalle)
   </notes>
  </release>
  <release>
   <date>2010-11-30</date>
   <version>
    <release>3.1.6</release>
    <api>3.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <license uri="http://www.php.net/license">PHP License</license>
   <notes>
- make slam_defense a little more optimistic, allow a thread/process to write to cache in a loop
- ensure realpaths hit the realpath_cache, in no-stat mode
- prevent memory starvation, nuke all caches when expunging just one doesn&apos;t work
- fix uploadprogress keylength issues (NUL is part of keylen, pecl bug #20016)
   </notes>
  </release>
 </changelog>
</package>