Code Monkey home page Code Monkey logo

Comments (4)

matthiasmullie avatar matthiasmullie commented on May 28, 2024

Hey @sunra. There is none at the moment, and I didn't have any plans to create one (yet).

You wouldn't happen to be interested in building one? I'd be happy to help out!

from scrapbook.

rlataguerra avatar rlataguerra commented on May 28, 2024

a symfony bundle would be great

from scrapbook.

radoslavius avatar radoslavius commented on May 28, 2024

no need imho

yml:

parameters:
    cache_sqlite_db: 'sqlite:%kernel.root_dir%/../var/cache/%kernel.environment%/cache.db'

services:
    cache.db:
        class: PDO
        arguments: ["%cache_sqlite_db%"]

    cache.adapter:
        class: MatthiasMullie\Scrapbook\Adapters\SQLite
        arguments: ["@cache.db"]

    cache.pool:
        class: MatthiasMullie\Scrapbook\Psr6\Pool
        arguments: ["@cache.adapter"]

    cache.taggablepool:
        class: MatthiasMullie\Scrapbook\Psr6\Taggable\Pool
        arguments: ["@cache.pool"]

usage in controller:

$pool = $this->get('cache.taggablepool');
$item = $pool->getItem('your_key');
if (!is_null($item->get())) {
    $data = $item->get();
}
else {
    $data = // do something to cache
    $item->set($data);
    $item->expiresAfter(600); //cache for 10 minutes
    $pool->save($item);
}

from scrapbook.

matthiasmullie avatar matthiasmullie commented on May 28, 2024

I agree with @radoslavius that this is not really needed. All features are easy to "enable" just by wrapping them inside one another, from the YML file. Here's another example: https://github.com/forkcms/forkcms/blob/master/app/config/config.yml#L89

If anyone feels a Symfony bundle is useful and is willing to create one, I wouldn't mind helping out. But for now, I'm closing this :)

from scrapbook.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.