Giter Club home page Giter Club logo

Comments (7)

RWOverdijk avatar RWOverdijk commented on July 26, 2024

To be honest, I have absolutely no idea. I have never used that cache type
before (it's not optimal to do so). I'd recommend using the FilePathCache
type.

What I do know, is that it basically uses the hashes itself to find a
cache match. So you just use the key in stead of the hash name.

from assetmanager.

jmleroux avatar jmleroux commented on July 26, 2024

Of course i will use FilePathCache for production, but FilesystemCache is good for development, as it refresh assets automatically.

Maybe I should use aliases, but I didn't find any doc.

from assetmanager.

RWOverdijk avatar RWOverdijk commented on July 26, 2024

Just use the path you'd normally use, the hash key is used by the cache
itself.

from assetmanager.

jmleroux avatar jmleroux commented on July 26, 2024

OK for using FilePathCache in production.
There is just a problem with FilePathCache and FilesystemCache : say i have an asset css.foo.cs

The cache in production should be :

        'caching' => array(
            'default' => array(
                'cache' => 'FilePathCache',
                'options' => array(
                    'dir' => 'public',
                ),
            ),
        ),

then my file will be under public/css/foo.css

But if I change for FilesystemCache, the hashed file will be under public/1y23s4f5d6789.
This doesn't suits me.

Eventuallly, I would change the config for development :

        'caching' => array(
            'default' => array(
                'cache' => 'Filesystem',
                'options' => array(
                    'dir' => 'data/cache',
                ),
            ),
        ),

So in conclusion, I think that the cache configuration should go under config/autoload/asset_manager.local.php

The default .gitignore strategy will ignore this config and it will become environment-dependent.

It may be worth to say a word about this in the doc ?

from assetmanager.

RWOverdijk avatar RWOverdijk commented on July 26, 2024

We could do that. That might not be the worst idea :)

from assetmanager.

Ocramius avatar Ocramius commented on July 26, 2024

@jmleroux that's absolutely for config/autoload

from assetmanager.

jmleroux avatar jmleroux commented on July 26, 2024

The way I use this module, I split the config :

config/autoload/asset_manager.local.php essentialy for the cache configuration

assets.module.config.php in my modules, essentially for the resolvers : it's easier to set the paths for the module's assets from the module config path.

from assetmanager.

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.