-1

内容管理框架 MODX 提供了使用 APC 作为缓存引擎的选项。我发现我可以将其迁移到 APCu。

我复制并编辑了所有代码,现在我有了第二个选项,它提供 APCu 作为缓存引擎。由于我的 php 技能在过去几年中有所下降,我正在努力寻找正确的方法来重写构造函数。

原始代码是这样的:

class xPDOAPCCache extends xPDOCache {
public function __construct(& $xpdo, $options = array()) {
    parent :: __construct($xpdo, $options);
    if (function_exists('apc_exists')) {
        $this->initialized = true;
    } else {
        $this->xpdo->log(xPDO::LOG_LEVEL_ERROR, "xPDOAPCCache[{$this->key}]: Error creating APC cache provider; xPDOAPCCache requires the APC extension for PHP, version 2.0.0 or later.");
    }
}
[...]

我这样重写:

class xPDOAPCuCache extends xPDOCache {
   public function __construct(& $xpdo, $options = array()) {
        parent :: __construct($xpdo, $options);
        if (function_exists('apcu_exists')) {
            $this->initialized = true;
        } else {
            $this->xpdo->log(xPDO::LOG_LEVEL_ERROR, "xPDOAPCuCache[{$this->key}]: Error creating APCu cache provider; xPDOAPCuCache requires the APCu extension for PHP.");
        }
    }
    [...]

这是行不通的,因为 APCu 不采用与 APC 相同的参数。(见http://php.net/manual/de/apciterator.construct.phphttp://php.net/manual/de/apcuiterator.construct.php

我如何需要编辑此构造器以使我的 CMF 与 APCu 作为缓存引擎一起使用?

4

1 回答 1

1

您的代码示例似乎根本没有引用 APCIterator?所以很难说会发生什么变化。

我建议你看看apcu_bc,它在 APCu 之上提供了与 APC API 的兼容层。我不确定迭代器具体是什么,但我已经成功使用这个包有一段时间了,直到我逐渐迁移到原生 APCu API。

于 2019-02-22T23:20:42.660 回答