Magento 2: วิธีสร้างประเภทแคชที่กำหนดเองของคุณเอง?


10

ใน Magento 1 เป็นไปได้ที่จะสร้างประเภทแคชของคุณเองโดยการประกาศสิ่งต่อไปนี้ใน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>

มันจะส่งผลให้มีการเพิ่มประเภทแคชใหม่ลงในแบ็กเอนด์ภายใต้ระบบ> การจัดการแคชและดังนั้นมันจะเพิ่มความสามารถในการล้างแคชที่เกี่ยวข้องกับCUSTOM_CACHE_TAGแท็กแคช

เป็นไปได้ใน M2 และวิธีการบรรลุหรือไม่


สำหรับตัวอย่างการนำไปใช้ของคำตอบที่ยอมรับโปรดดู: magento.stackexchange.com/questions/150074//
RikW

สำหรับตัวอย่างการใช้งานของคำตอบที่ยอมรับโปรดดู: magento.stackexchange.com/questions/150074//
RikW

คำตอบ:


19

นี่คือโครงสร้างพื้นฐานสำหรับสร้างประเภทแคชที่กำหนดเอง

สร้างหนึ่งโมดูลด้วย

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);
    }
}

ขอบคุณ


7
มันจะดีถ้าคุณสามารถบอกวิธีการใช้แคช ฉันหมายถึงวิธีเพิ่มลบตรวจสอบรายการแคช
Arvind07

ถ้าใครรู้วิธีจัดเก็บและรับข้อมูลแคชจะดีมาก ได้โปรด
Arshad Hussain


2

ต้องการแก้ไข Rakesh ยอมรับความคิดเห็น แต่ถูกปฏิเสธ ....

อย่างไรก็ตามที่นี่มีการดัดแปลงข้อมูลเพิ่มเติมเพื่อคำตอบที่ดีจาก Rakesh:

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_tag" translate="label,description" instance="Vendor\Cachetype\Model\Cache\Type">
        <label>Custom Cache type</label>
        <description>Custom cache description.</description>
    </type>
 </config>

ดังนั้นชื่อจะต้องตรงกับ cache_tag

วิธีใช้ดูที่นี่: การใช้แคชที่กำหนดเองของ Magento 2 ในโมดูลที่กำหนดเอง

ในการใช้ข้อมูล (หลังจากถูกแคช) คุณต้องยกเลิกการบันทึกข้อมูลอีกครั้ง:

$data = unserialize($this->_cacheType->load($cacheKey));
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.