Skip to content

Commit d2f3902

Browse files
authored
Merge pull request #951 from petk/patch-xcache
Remove XCache
2 parents bbde1b0 + af09e70 commit d2f3902

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

_posts/14-02-01-Opcode-Cache.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,13 @@ Read more about opcode caches:
1616
* [Zend OPcache][opcache-book] (bundled with PHP since 5.5)
1717
* Zend OPcache (formerly known as Zend Optimizer+) is now [open source][Zend Optimizer+]
1818
* [APC] - PHP 5.4 and earlier
19-
* [XCache]
2019
* [WinCache] (extension for MS Windows Server)
2120
* [list of PHP accelerators on Wikipedia][PHP_accelerators]
2221
* [PHP Preloading] - PHP >= 7.4
2322

2423

2524
[opcache-book]: https://secure.php.net/book.opcache
2625
[APC]: https://www.php.net/book.apcu
27-
[XCache]: https://github.com/lighttpd/xcache
2826
[Zend Optimizer+]: https://github.com/zendtech/ZendOptimizerPlus
2927
[WinCache]: https://www.iis.net/downloads/microsoft/wincache-extension
3028
[PHP_accelerators]: https://wikipedia.org/wiki/List_of_PHP_accelerators

_posts/14-03-01-Object-Caching.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ them, then pull them directly from the cache for following requests, you can gai
1212
performance as well as reduce the load on your database servers.
1313

1414
Many of the popular bytecode caching solutions let you cache custom data as well, so there's even more reason to take
15-
advantage of them. APCu, XCache, and WinCache all provide APIs to save data from your PHP code to their memory cache.
15+
advantage of them. APCu and WinCache both provide APIs to save data from your PHP code to their memory cache.
1616

1717
The most commonly used memory object caching systems are APCu and memcached. APCu is an excellent choice for object
1818
caching, it includes a simple API for adding your own data to its memory cache and is very easy to setup and use. The
@@ -51,5 +51,4 @@ object cache to PHP 5.5+, since PHP now has a built-in bytecode cache (OPcache).
5151
* [APC Functions](https://secure.php.net/ref.apc)
5252
* [Memcached](https://memcached.org/)
5353
* [Redis](https://redis.io/)
54-
* [XCache APIs](https://xcache.lighttpd.net/wiki/XcacheApi)
5554
* [WinCache Functions](https://secure.php.net/ref.wincache)

0 commit comments

Comments
 (0)