此数据是否被另一个组件覆盖?

Is this data being overwritten by another component?

我正在使用 symfony 组件在 Silex 中进行一些编程,我想我发现了 symfony/serializersymfony/validator 组件的错误。

首先让我解释一下我要实现的目标,然后让我们转到代码。 我的 objective 是用序列化指令和验证指令等信息注释 class。由于读取这些注释可能会花费一些 cpu,我喜欢将它们缓存在内存中。为此,我在 Doctrine/Common/Cache 包中使用内存缓存包装器。

我面临的问题是 symfony/serializersymfony/validator 都使用 class 名称作为键将元数据写入缓存。当他们稍后尝试检索元数据时,他们会抛出异常,因为缓存中的元数据无效,可能是 Symfony\Component\Validator\Mapping\ClassMetadataSymfony\Component\Serializer\Mapping\ClassMetadataInterface.

的实例

以下是一个可重现的例子(对不起,如果它很大,我试着做得尽可能小):

use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Validator\Constraints as Assert;

class Foo
{
    /**
     * @var int
     * @Assert\NotBlank(message="This field cannot be empty")
     */
    private $someProperty;

    /**
     * @return int
     * @Groups({"some_group"})
     */
    public function getSomeProperty() {
        return $this->someProperty;
    }
}


use Doctrine\Common\Annotations\AnnotationReader;
use \Memcache as MemcachePHP;
use Doctrine\Common\Cache\MemcacheCache as MemcacheWrapper;

$loader = require_once __DIR__ . '/../vendor/autoload.php';

\Doctrine\Common\Annotations\AnnotationRegistry::registerLoader([$loader, 'loadClass']);

$memcache = new MemcachePHP();

if (! $memcache->connect('localhost', '11211')) {
    throw new \Exception('Unable to connect to memcache server');
}

$cacheDriver = new MemcacheWrapper();
$cacheDriver->setMemcache($memcache);

$app = new \Silex\Application();

$app->register(new Silex\Provider\SerializerServiceProvider());

$app['serializer.normalizers'] = function () use ($app, $cacheDriver) {
    $classMetadataFactory = new Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory(
        new Symfony\Component\Serializer\Mapping\Loader\AnnotationLoader(new AnnotationReader()), $cacheDriver);

    return [new Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer($classMetadataFactory) ];
};

$app->register(new Silex\Provider\ValidatorServiceProvider(), [
    'validator.mapping.class_metadata_factory' =>
        new \Symfony\Component\Validator\Mapping\Factory\LazyLoadingMetadataFactory(
            new \Symfony\Component\Validator\Mapping\Loader\AnnotationLoader(new AnnotationReader()),
            new \Symfony\Component\Validator\Mapping\Cache\DoctrineCache($cacheDriver)
        )
]);

$app->get('/', function(\Silex\Application $app) {
    $foo = new Foo();

    $app['validator']->validate($foo);
    $json = $app['serializer']->serialize($foo, 'json');

    return new \Symfony\Component\HttpFoundation\JsonResponse($json, \Symfony\Component\HttpFoundation\Response::HTTP_OK, [], true);
});

$app->error(function (\Exception $e, \Symfony\Component\HttpFoundation\Request $request, $code) {
    return new \Symfony\Component\HttpFoundation\Response('We are sorry, but something went terribly wrong.' . $e->getMessage());
});

$app->run();

在 运行 这个例子之后你会得到致命错误。 谁能确认我在这里没有犯严重错误?

目前我的解决方法是重写 DoctrineCache class,为缓存键使用命名空间。它的工作,但我认为它丑陋。

我认为你需要做的是两个独立的CacheDrivers。请参阅 https://github.com/doctrine/cache/blob/master/lib/Doctrine/Common/Cache/CacheProvider.php 了解名称空间的使用方式。

你可以:

$validatorCacheDriver = new MemcacheWrapper();
$validatorCacheDriver->setMemcache($memcache);
$validatorCacheDriver->setNamespace('symfony_validator');

$serializerCacheDriver = new MemcacheWrapper();
$serializerCacheDriver->setMemcache($memcache);
$serializerCacheDriver->setNamespace('symfony_serializer');

// note that the two drivers are using the same memcache instance, 
// so only one connection will be used.

$app['serializer.normalizers'] = function () use ($app, $serializerCacheDriver) {
    $classMetadataFactory = new Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory(
        new Symfony\Component\Serializer\Mapping\Loader\AnnotationLoader(new AnnotationReader()), $serializerCacheDriver);

    return [new Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer($classMetadataFactory) ];
};

$app->register(new Silex\Provider\ValidatorServiceProvider(), [
    'validator.mapping.class_metadata_factory' =>
        new \Symfony\Component\Validator\Mapping\Factory\LazyLoadingMetadataFactory(
            new \Symfony\Component\Validator\Mapping\Loader\AnnotationLoader(new AnnotationReader()),
            new \Symfony\Component\Validator\Mapping\Cache\DoctrineCache($validatorCacheDriver)
        )
]);

我已经精简了代码以仅显示在解决方案中发挥作用的部分。希望对您有所帮助!