jadu / inspectable-stash-bundle
Package info
github.com/jadu/inspectable-stash-bundle
Type:project
pkg:composer/jadu/inspectable-stash-bundle
Requires
- php: >=5.5
- symfony/symfony: ~2
- tedivm/stash: ~0.12.0
- tedivm/stash-bundle: ^0.4.3
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Symfony bundle to allow inspecting data cached with Stash.
Usage
Add the bundle to your kernel to install the cache driver proxy and inspection console command:
class AppKernel { ... public function registerBundles() { $bundles = array( ... new Tedivm\StashBundle\TedivmStashBundle(), new Jadu\InspectableStashBundle\InspectableStashDriverBundle(), ... ); return $bundles; } ... }
you'll also need to configure the Memcached service that should be used, for example (added to config.yml):
inspectable_stash_driver: memcached_service: my_vendor.caching.memcached_service_id
the service will need to be an instance of the builtin Memcached class.
Inspecting the cached data
You can use the console command:
app/console dump:stash:cache
to fetch a list of all keys stored by Stash. If you need to filter this list for only keys matching a certain pattern, you may provide a regular expression like this:
app/console dump:stash:cache --grep 'some/prefix.*later'
. Finally, if you need to see the values for each cache entry too, just add the --with-values option, like this:
app/console dump:stash:cache --grep 'some/prefix.*later' --with-values
. --with-values may be used with or without --grep.