├── .appveyor ├── build.ps1 ├── install.ps1 ├── package.ps1 └── test.ps1 ├── .dockerignore ├── .editorconfig ├── .github └── workflows │ ├── build_dlls.yml │ └── config.yml ├── .gitignore ├── .gitmodules ├── IMMUTABLE_CACHE_TECHNOTES.txt ├── LICENSE ├── Makefile.frag ├── NOTICE ├── README.md ├── TECHNOTES.txt ├── appveyor.yml ├── benchmark_shm.php ├── checkrel.sh ├── ci ├── Dockerfile ├── Dockerfile.valgrind ├── generate_php_install_dir.sh ├── install_php_custom.sh ├── run-tests-parallel.php ├── test_dockerized.sh ├── test_dockerized_valgrind.sh ├── test_inner.sh └── test_inner_valgrind.sh ├── config.m4 ├── config.w32 ├── immutable_cache.c ├── immutable_cache.h ├── immutable_cache.php ├── immutable_cache_api.h ├── immutable_cache_arginfo.h ├── immutable_cache_cache.c ├── immutable_cache_cache.h ├── immutable_cache_globals.h ├── immutable_cache_iterator.c ├── immutable_cache_iterator.h ├── immutable_cache_iterator.stub.php ├── immutable_cache_iterator_arginfo.h ├── immutable_cache_iterator_legacy_arginfo.h ├── immutable_cache_lock.c ├── immutable_cache_lock.h ├── immutable_cache_mmap.c ├── immutable_cache_mmap.h ├── immutable_cache_mutex.c ├── immutable_cache_mutex.h ├── immutable_cache_persist.c ├── immutable_cache_php.h ├── immutable_cache_php74_shim.h ├── immutable_cache_serializer.h ├── immutable_cache_shm.c ├── immutable_cache_shm.h ├── immutable_cache_signal.c ├── immutable_cache_signal.h ├── immutable_cache_sma.c ├── immutable_cache_sma.h ├── immutable_cache_stack.c ├── immutable_cache_stack.h ├── immutable_cache_strings.h ├── immutable_cache_time.c ├── immutable_cache_time.h ├── immutable_cache_windows_srwlock_kernel.c ├── immutable_cache_windows_srwlock_kernel.h ├── package.xml ├── php_immutable_cache.c ├── php_immutable_cache.h ├── php_immutable_cache.stub.php ├── php_immutable_cache_arginfo.h ├── php_immutable_cache_legacy_arginfo.h └── tests ├── .gitignore ├── README.md ├── apc54_014.phpt ├── apc54_018.phpt ├── apc_001.phpt ├── apc_002.phpt ├── apc_003b.phpt ├── apc_003b_legacy.phpt ├── apc_004.phpt ├── apc_005.phpt ├── apc_005b.phpt ├── apc_005c.phpt ├── apc_006.phpt ├── apc_006_php73.phpt ├── apc_006_php81.phpt ├── apc_010.phpt ├── apc_011.phpt ├── apc_013_exists.phpt ├── apc_014_store_ref.phpt ├── apc_015.phpt ├── apc_016.phpt ├── apc_017.phpt ├── apc_023.phpt ├── apc_024.phpt ├── apc_025.phpt ├── apc_disabled.phpt ├── apc_store_array_int_keys.phpt ├── apc_store_array_with_refs.phpt ├── apc_store_reference.phpt ├── apc_store_reference_php8.phpt ├── apc_store_string_reuse.phpt ├── apcu_fetch_empty_array.phpt ├── apcu_fetch_empty_array_reference.phpt ├── apcu_sma_info.phpt ├── bad └── abc.data ├── bug63224.phpt ├── bug76145.phpt ├── data └── abc.data ├── get_included_files_inc1.inc ├── get_included_files_inc2.inc ├── get_included_files_inc3.inc ├── ghbug168.phpt ├── ghbug176.phpt ├── ghbug185.phpt ├── ghbug247.phpt ├── ghbug248.phpt ├── ghbug335-fail.phpt ├── immutable_cache_immutable_arrays.phpt ├── immutable_cache_immutable_arrays2.phpt ├── immutable_cache_intern_strings.phpt ├── iterator_001.phpt ├── iterator_002.phpt ├── iterator_003.phpt ├── iterator_004.phpt ├── iterator_006.phpt ├── iterator_007.phpt ├── iterator_008.phpt ├── iterator_009.phpt ├── iterator_011.phpt ├── not_enough_shm.phpt ├── server_skipif.inc ├── server_test.inc ├── skipif.inc └── typed_prop.phpt /.appveyor/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.appveyor/build.ps1 -------------------------------------------------------------------------------- /.appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.appveyor/install.ps1 -------------------------------------------------------------------------------- /.appveyor/package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.appveyor/package.ps1 -------------------------------------------------------------------------------- /.appveyor/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.appveyor/test.ps1 -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build_dlls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.github/workflows/build_dlls.yml -------------------------------------------------------------------------------- /.github/workflows/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.github/workflows/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IMMUTABLE_CACHE_TECHNOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/IMMUTABLE_CACHE_TECHNOTES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/Makefile.frag -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/README.md -------------------------------------------------------------------------------- /TECHNOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/TECHNOTES.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmark_shm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/benchmark_shm.php -------------------------------------------------------------------------------- /checkrel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/checkrel.sh -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /ci/Dockerfile.valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/Dockerfile.valgrind -------------------------------------------------------------------------------- /ci/generate_php_install_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/generate_php_install_dir.sh -------------------------------------------------------------------------------- /ci/install_php_custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/install_php_custom.sh -------------------------------------------------------------------------------- /ci/run-tests-parallel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/run-tests-parallel.php -------------------------------------------------------------------------------- /ci/test_dockerized.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/test_dockerized.sh -------------------------------------------------------------------------------- /ci/test_dockerized_valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/test_dockerized_valgrind.sh -------------------------------------------------------------------------------- /ci/test_inner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/test_inner.sh -------------------------------------------------------------------------------- /ci/test_inner_valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/ci/test_inner_valgrind.sh -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/config.w32 -------------------------------------------------------------------------------- /immutable_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache.c -------------------------------------------------------------------------------- /immutable_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache.h -------------------------------------------------------------------------------- /immutable_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache.php -------------------------------------------------------------------------------- /immutable_cache_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_api.h -------------------------------------------------------------------------------- /immutable_cache_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_arginfo.h -------------------------------------------------------------------------------- /immutable_cache_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_cache.c -------------------------------------------------------------------------------- /immutable_cache_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_cache.h -------------------------------------------------------------------------------- /immutable_cache_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_globals.h -------------------------------------------------------------------------------- /immutable_cache_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_iterator.c -------------------------------------------------------------------------------- /immutable_cache_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_iterator.h -------------------------------------------------------------------------------- /immutable_cache_iterator.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_iterator.stub.php -------------------------------------------------------------------------------- /immutable_cache_iterator_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_iterator_arginfo.h -------------------------------------------------------------------------------- /immutable_cache_iterator_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_iterator_legacy_arginfo.h -------------------------------------------------------------------------------- /immutable_cache_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_lock.c -------------------------------------------------------------------------------- /immutable_cache_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_lock.h -------------------------------------------------------------------------------- /immutable_cache_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_mmap.c -------------------------------------------------------------------------------- /immutable_cache_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_mmap.h -------------------------------------------------------------------------------- /immutable_cache_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_mutex.c -------------------------------------------------------------------------------- /immutable_cache_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_mutex.h -------------------------------------------------------------------------------- /immutable_cache_persist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_persist.c -------------------------------------------------------------------------------- /immutable_cache_php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_php.h -------------------------------------------------------------------------------- /immutable_cache_php74_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_php74_shim.h -------------------------------------------------------------------------------- /immutable_cache_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_serializer.h -------------------------------------------------------------------------------- /immutable_cache_shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_shm.c -------------------------------------------------------------------------------- /immutable_cache_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_shm.h -------------------------------------------------------------------------------- /immutable_cache_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_signal.c -------------------------------------------------------------------------------- /immutable_cache_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_signal.h -------------------------------------------------------------------------------- /immutable_cache_sma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_sma.c -------------------------------------------------------------------------------- /immutable_cache_sma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_sma.h -------------------------------------------------------------------------------- /immutable_cache_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_stack.c -------------------------------------------------------------------------------- /immutable_cache_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_stack.h -------------------------------------------------------------------------------- /immutable_cache_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_strings.h -------------------------------------------------------------------------------- /immutable_cache_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_time.c -------------------------------------------------------------------------------- /immutable_cache_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_time.h -------------------------------------------------------------------------------- /immutable_cache_windows_srwlock_kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_windows_srwlock_kernel.c -------------------------------------------------------------------------------- /immutable_cache_windows_srwlock_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/immutable_cache_windows_srwlock_kernel.h -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/package.xml -------------------------------------------------------------------------------- /php_immutable_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/php_immutable_cache.c -------------------------------------------------------------------------------- /php_immutable_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/php_immutable_cache.h -------------------------------------------------------------------------------- /php_immutable_cache.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/php_immutable_cache.stub.php -------------------------------------------------------------------------------- /php_immutable_cache_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/php_immutable_cache_arginfo.h -------------------------------------------------------------------------------- /php_immutable_cache_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/php_immutable_cache_legacy_arginfo.h -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- 1 | # apcu-tests 2 | Test Suite for APCu 3 | -------------------------------------------------------------------------------- /tests/apc54_014.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc54_014.phpt -------------------------------------------------------------------------------- /tests/apc54_018.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc54_018.phpt -------------------------------------------------------------------------------- /tests/apc_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_001.phpt -------------------------------------------------------------------------------- /tests/apc_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_002.phpt -------------------------------------------------------------------------------- /tests/apc_003b.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_003b.phpt -------------------------------------------------------------------------------- /tests/apc_003b_legacy.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_003b_legacy.phpt -------------------------------------------------------------------------------- /tests/apc_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_004.phpt -------------------------------------------------------------------------------- /tests/apc_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_005.phpt -------------------------------------------------------------------------------- /tests/apc_005b.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_005b.phpt -------------------------------------------------------------------------------- /tests/apc_005c.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_005c.phpt -------------------------------------------------------------------------------- /tests/apc_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_006.phpt -------------------------------------------------------------------------------- /tests/apc_006_php73.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_006_php73.phpt -------------------------------------------------------------------------------- /tests/apc_006_php81.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_006_php81.phpt -------------------------------------------------------------------------------- /tests/apc_010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_010.phpt -------------------------------------------------------------------------------- /tests/apc_011.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_011.phpt -------------------------------------------------------------------------------- /tests/apc_013_exists.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_013_exists.phpt -------------------------------------------------------------------------------- /tests/apc_014_store_ref.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_014_store_ref.phpt -------------------------------------------------------------------------------- /tests/apc_015.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_015.phpt -------------------------------------------------------------------------------- /tests/apc_016.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_016.phpt -------------------------------------------------------------------------------- /tests/apc_017.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_017.phpt -------------------------------------------------------------------------------- /tests/apc_023.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_023.phpt -------------------------------------------------------------------------------- /tests/apc_024.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_024.phpt -------------------------------------------------------------------------------- /tests/apc_025.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_025.phpt -------------------------------------------------------------------------------- /tests/apc_disabled.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_disabled.phpt -------------------------------------------------------------------------------- /tests/apc_store_array_int_keys.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_store_array_int_keys.phpt -------------------------------------------------------------------------------- /tests/apc_store_array_with_refs.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_store_array_with_refs.phpt -------------------------------------------------------------------------------- /tests/apc_store_reference.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_store_reference.phpt -------------------------------------------------------------------------------- /tests/apc_store_reference_php8.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_store_reference_php8.phpt -------------------------------------------------------------------------------- /tests/apc_store_string_reuse.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apc_store_string_reuse.phpt -------------------------------------------------------------------------------- /tests/apcu_fetch_empty_array.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apcu_fetch_empty_array.phpt -------------------------------------------------------------------------------- /tests/apcu_fetch_empty_array_reference.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apcu_fetch_empty_array_reference.phpt -------------------------------------------------------------------------------- /tests/apcu_sma_info.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/apcu_sma_info.phpt -------------------------------------------------------------------------------- /tests/bad/abc.data: -------------------------------------------------------------------------------- 1 | s:3:"123 2 | -------------------------------------------------------------------------------- /tests/bug63224.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/bug63224.phpt -------------------------------------------------------------------------------- /tests/bug76145.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/bug76145.phpt -------------------------------------------------------------------------------- /tests/data/abc.data: -------------------------------------------------------------------------------- 1 | s:3:"123"; 2 | -------------------------------------------------------------------------------- /tests/get_included_files_inc1.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/get_included_files_inc2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/get_included_files_inc2.inc -------------------------------------------------------------------------------- /tests/get_included_files_inc3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/get_included_files_inc3.inc -------------------------------------------------------------------------------- /tests/ghbug168.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/ghbug168.phpt -------------------------------------------------------------------------------- /tests/ghbug176.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/ghbug176.phpt -------------------------------------------------------------------------------- /tests/ghbug185.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/ghbug185.phpt -------------------------------------------------------------------------------- /tests/ghbug247.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/ghbug247.phpt -------------------------------------------------------------------------------- /tests/ghbug248.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/ghbug248.phpt -------------------------------------------------------------------------------- /tests/ghbug335-fail.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/ghbug335-fail.phpt -------------------------------------------------------------------------------- /tests/immutable_cache_immutable_arrays.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/immutable_cache_immutable_arrays.phpt -------------------------------------------------------------------------------- /tests/immutable_cache_immutable_arrays2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/immutable_cache_immutable_arrays2.phpt -------------------------------------------------------------------------------- /tests/immutable_cache_intern_strings.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/immutable_cache_intern_strings.phpt -------------------------------------------------------------------------------- /tests/iterator_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_001.phpt -------------------------------------------------------------------------------- /tests/iterator_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_002.phpt -------------------------------------------------------------------------------- /tests/iterator_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_003.phpt -------------------------------------------------------------------------------- /tests/iterator_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_004.phpt -------------------------------------------------------------------------------- /tests/iterator_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_006.phpt -------------------------------------------------------------------------------- /tests/iterator_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_007.phpt -------------------------------------------------------------------------------- /tests/iterator_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_008.phpt -------------------------------------------------------------------------------- /tests/iterator_009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_009.phpt -------------------------------------------------------------------------------- /tests/iterator_011.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/iterator_011.phpt -------------------------------------------------------------------------------- /tests/not_enough_shm.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/not_enough_shm.phpt -------------------------------------------------------------------------------- /tests/server_skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/server_skipif.inc -------------------------------------------------------------------------------- /tests/server_test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/server_test.inc -------------------------------------------------------------------------------- /tests/skipif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/skipif.inc -------------------------------------------------------------------------------- /tests/typed_prop.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TysonAndre/immutable_cache-pecl/HEAD/tests/typed_prop.phpt --------------------------------------------------------------------------------