@@ -19,11 +19,11 @@ that…
1919* …instead of re-implementing locking and caching mechanisms again, uses the well
2020tested Symfony Cache and Lock components, both with the local filesystem adapters
2121by default.
22- * …thanks to the ` TagAwareAdapter ` of the Cache component, supports tag based cache
23- invalidation.
22+ * …thanks to the ` TagAwareAdapterInterface ` of the Cache component, supports tag
23+ based cache invalidation.
2424* …thanks to the ` PrunableInterface ` of the Cache component, supports auto-pruning
2525of expired entries on the filesystem trying to prevent flooding the filesystem.
26- * …allows you to use a different PSR-6 cache adapters as well as a differenent
26+ * …allows you to use a different PSR-6 cache adapters as well as a different
2727lock adapter than the local filesystem ones.
2828 However, ** be careful about choosing the right adapters** , see warning below.
2929
@@ -86,8 +86,11 @@ passing an array of `$options` in the constructor:
8686
8787 ** Type** : ` string `
8888
89- * ** cache** : Explicitly specify the cache adapter you want to use. Make sure
90- that ` lock ` and ` cache ` have the same scope. * See warning below!*
89+ * ** cache** : Explicitly specify the cache adapter you want to use.
90+
91+ Note that if you want to make use of cache tagging, this cache must
92+ implement the ` Symfony\Component\Cache\Adapter\TagAwareAdapterInterface `
93+ Make sure that ` lock ` and ` cache ` have the same scope. * See warning below!*
9194
9295 ** Type** : ` Symfony\Component\Cache\Adapter\AdapterInterface `
9396 ** Default** : ` FilesystemAdapter ` instance with ` cache_directory `
0 commit comments