承接 yfktn/twigcacheplugin 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

yfktn/twigcacheplugin

Composer 安装命令:

composer require yfktn/twigcacheplugin

包简介

October CMS Plugin to add Twig Cache Extension into OctoberCMS.

README 文档

README

Add twig cache plugin extension to octoberCMS.

Installing The Plugin

Since v0.0.6 we can installing the plugin from composer. From the root of octobercms path:

$ composer require yfktn/twigcacheplugin

You need to use version v0.1 for OctoberCMS version 1.1.

How To Use

This plugin currently implement the IndexedChainingCacheStrategy(), with time (LifetimeCacheStrategy()) and model (GenerationalCacheStrategy()) as index to access when we need to implement related strategy.

To use it, in your twig template, surround the code with a cache block at the part you want to cache.

Let say we have part of our homepage that we need to cache, and it would expired in 120 seconds, then our code would be:

{# add homepage annotation with time strategy, for 10 seconds #}
{% cache "homepage" {time: 10} %}
    {# heavy lifting template stuff here, include/render other partials etc #}
{% endcache %}

In another case, you have view to show detail of Eloquent database model and it would expired in 7200 seconds or when our model updated (since the cache strategy need created_at field in your model as Carbon object to generated cache key, you need to make custom mutator if it doesn't exist), then our code would be:

{# add model annotation #}
{% set annotmodel = "model" ~ post.id %}
{% cache annotmodel {model: post} %}
    {# heavy lifting template stuff here, include/render other partials etc #}
{% endcache %}

Blackhole Cache Strategy

When you are in development mode, you don't need twig loading previous generated cache to view. In the configuration file you can change value of blackholeCacheStrategyMode to true, this strategy prevents previously caching version from being rendered.

True is the default value of blackholeCacheStrategyMode and you MUST set this value to false when deploying it in your production server.

For more information about twig cache plugin extension please consult to twig cache plugin extension page.

Note: My plugin is in early stages of its development, please use with care.

统计信息

  • 总下载量: 15
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-04-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固