PHPackages                             parizz/cache-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Caching](/categories/caching)
4. /
5. parizz/cache-bundle

ActiveSymfony-bundle[Caching](/categories/caching)

parizz/cache-bundle
===================

Parizz CacheBundle

3821PHP

Since May 23Pushed 14y agoCompare

[ Source](https://github.com/Parizz/ParizzCacheBundle)[ Packagist](https://packagist.org/packages/parizz/cache-bundle)[ RSS](/packages/parizz-cache-bundle/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

ParizzCacheBundle
=================

[](#parizzcachebundle)

This bundle allows you to configure cache services on top of Doctrine Common Cache :

Using it
--------

[](#using-it)

You can enable and use Doctrine cache drivers through your project configuration this way :

```
# app/config/config.yml
parizz_cache:
    drivers:
        my_memcache:
            type: memcache
            host: localhost
            port: 11211
        # A Filsesystem driver is also available
        # (for shared hosted who cannot enable APC, Memcache, etc...)
        foo:
            type: filesystem
            path: /my/filesystem/cache/path
```

Then, just grab your cache service from the container :

```
