Magento 2: Kendi özel önbellek türünüzü nasıl oluşturabilirsiniz?


10

Magento 1'de, aşağıdakilerinizi beyan ederek kendi önbellek türünüzü oluşturmak mümkün oldu config.xml:

<global>
    <cache>
        <types>
            <custom translate="label,description" module="module">
                <label>Custom Cache</label>
                <description>This is my custom cacge</description>
                <tags>CUSTOM_CACHE_TAG</tags>
            </custom >
        </types>
    </cache>
</global>

Sistem> Önbellek Yönetimi altında arka uca yeni bir önbellek türü eklenir ve böylece CUSTOM_CACHE_TAGönbellek etiketi ile ilgili önbelleği temizleme yeteneği eklenir .

M2'de bu mümkün mü ve nasıl elde edilir?


Kabul edilen cevabın örnek bir uygulaması için bakınız: magento.stackexchange.com/questions/150074/…
RikW

Kabul edilen cevabın örnek bir uygulaması için bakınız: magento.stackexchange.com/questions/150074/…
RikW

Yanıtlar:


19

Bu, özel önbellek türü oluşturmak için bazı temel yapıların altındadır,

ile bir modül oluşturun,

app/code/Vendor/Cachetype/etc/cache.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Cache/etc/cache.xsd">
    <type name="custom_cache" translate="label,description" instance="Vendor\Cachetype\Model\Cache\Type">
        <label>Custom Cache type</label>
        <description>Custom cache description.</description>
    </type>
</config>

app/code/Vendor/Cachetype/i18n/en_US.csv

"Custom cache description.","Custom cache description."
"cachetype","Cache type"

app/code/Vendor/Cachetype/Model/Cache/Type.php

<?php
namespace Vendor\Cachetype\Model\Cache;

/**
 * System / Cache Management / Cache type "Custom Cache Tag"
 */
class Type extends \Magento\Framework\Cache\Frontend\Decorator\TagScope
{
    /**
     * Cache type code unique among all cache types
     */
    const TYPE_IDENTIFIER = 'custom_cache_tag';

    /**
     * Cache tag used to distinguish the cache type from all other cache
     */
    const CACHE_TAG = 'CUSTOM_CACHE_TAG';

    /**
     * @param \Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool
     */
    public function __construct(\Magento\Framework\App\Cache\Type\FrontendPool $cacheFrontendPool)
    {
        parent::__construct($cacheFrontendPool->get(self::TYPE_IDENTIFIER), self::CACHE_TAG);
    }
}

Teşekkürler.


7
Önbelleği nasıl kullanacağınızı söyleyebilmeniz harika olurdu. Yani önbellek öğelerini nasıl ekleyeceğimizi, silebileceğimizi ve kontrol edeceğim.
Arvind07

eğer birisi önbellek verilerinin nasıl saklanacağını ve alınacağını bilirse harika olur. Lütfen
Arshad Hussain


2

Rakesh'in kabul ettiği yorumu düzenlemek istiyor, ancak reddedildi ....

Neyse burada bazı değişiklikler, Rakesh'in iyi cevabına ek bilgi:

Cache.xml dosyasının biraz değiştirilmesi gerekir:

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:noNamespaceSchemaLocation="urn:magento:framework:Cache/etc/cache.xsd">
<type name="custom_cache_tag" translate="label,description" instance="Vendor\Cachetype\Model\Cache\Type">
        <label>Custom Cache type</label>
        <description>Custom cache description.</description>
    </type>
 </config>

Bu nedenle adın cache_tag ile eşleşmesi gerekir.

Nasıl kullanılır, buraya bakın: Özel modülde Magento 2 özel önbelleğini kullanma

Verileri kullanmak için (önbelleğe alındıktan sonra) serileştirmeyi kaldırmanız gerekir:

$data = unserialize($this->_cacheType->load($cacheKey));
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.