4

memcacheついにWindowsでPHP5.4.4のバイナリを見つけたので、現在開発中のアプリケーションを高速化しています。

memcacheをDoctrineORMMapping Cacheドライバーとして設定することに成功しましたが、別のリークを修正する必要があります。アノテーションを使用して構築されたフォームです。

ドキュメントの注釈セクションに従ってフォームを作成しています。残念ながら、これには多くの時間がかかります。特に、1つのページに複数のフォームを作成する場合はそうです。

このプロセスにキャッシュを追加することは可能ですか?コードを閲覧しましたが、Zend\Form\Annotation\AnnotationBuilder常にコードを反映して注釈を解析することでフォームを作成しているようです。前もって感謝します。

4

2 に答える 2

1

あなたはこのようなことを試してみたいかもしれません:

class ZendFormCachedController extends Zend_Controller_Action
{
    protected $_formId = 'form';

    public function indexAction()
    {
            $frontend = array(
                    'lifetime' => 7200,
                    'automatic_serialization' => true);

            $backend = array('cache_dir' => '/tmp/');
            $cache = Zend_Cache::factory('Core', 'File', $frontend, $backend);

            if ($this->getRequest()->isPost()) {
                    $form = $this->getForm(new Zend_Form);
            } else if (! $form = $cache->load($this->_formId)) {
                    $form = $this->getForm(new Zend_Form);
                    $cache->save($form->__toString(), $this->_formId);
            }

            $this->getHelper('layout')->setLayout('zend-form');
            $this->view->form = $form;
    }

ここで見つかりました。

于 2012-09-11T15:34:46.393 に答える
1

Louisの答えはうまくいかなかったので、AnnotationBuilderのコンストラクターを拡張してキャッシュオブジェクトを取得し、getFormSpecificationそのキャッシュを使用して結果をキャッシュするように変更しました。私の機能は以下の通りです。

非常に迅速な回避策...改善できることを確認してください。私の場合、古いハードウェアに限定されていたため、ページの読み込み時間が10秒以上から約1秒になりました。

/**
 * Creates and returns a form specification for use with a factory
 *
 * Parses the object provided, and processes annotations for the class and
 * all properties. Information from annotations is then used to create
 * specifications for a form, its elements, and its input filter.
 *
 * MODIFIED: Now uses local cache to store parsed annotations
 *
 * @param  string|object $entity Either an instance or a valid class name for an entity
 * @throws Exception\InvalidArgumentException if $entity is not an object or class name
 * @return ArrayObject
 */
public function getFormSpecification($entity)
{
    if (!is_object($entity)) {
        if ((is_string($entity) && (!class_exists($entity))) // non-existent class
            || (!is_string($entity)) // not an object or string
        ) {
            throw new Exception\InvalidArgumentException(sprintf(
                '%s expects an object or valid class name; received "%s"',
                __METHOD__,
                var_export($entity, 1)
            ));
        }
    }

    $formSpec = NULL;
    if ($this->cache) { 
        //generate cache key from entity name
        $cacheKey =  (is_string($entity) ? $entity : get_class($entity)) . '_form_cache';

        //get the cached form annotations, try cache first
        $formSpec = $this->cache->getItem($cacheKey);
    }
    if (empty($formSpec)) {
        $this->entity      = $entity;
        $annotationManager = $this->getAnnotationManager();
        $formSpec          = new ArrayObject();
        $filterSpec        = new ArrayObject();

        $reflection  = new ClassReflection($entity);
        $annotations = $reflection->getAnnotations($annotationManager);

        if ($annotations instanceof AnnotationCollection) {
            $this->configureForm($annotations, $reflection, $formSpec, $filterSpec);
        }

        foreach ($reflection->getProperties() as $property) {
            $annotations = $property->getAnnotations($annotationManager);

            if ($annotations instanceof AnnotationCollection) {
                $this->configureElement($annotations, $property, $formSpec, $filterSpec);
            }
        }

        if (!isset($formSpec['input_filter'])) {
            $formSpec['input_filter'] = $filterSpec;
        }

        //save annotations to cache
        if ($this->cache) { 
            $this->cache->addItem($cacheKey, $formSpec);
        }
    }

    return $formSpec;
}
于 2013-08-12T16:03:10.940 に答える