8000 [Cache] Update cache for 4.2 by Nyholm · Pull Request #11391 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Cache] Update cache for 4.2 #11391

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated link
  • Loading branch information
Nyholm committed Apr 10, 2019
commit 4a8fd7fb09a3e05e6c8c33f2b83b17784d6b6630
4 changes: 3 additions & 1 deletion components/cache/psr6_psr16_adapters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Adapters For Interoperability between PSR-6 and PSR-16 Cache
============================================================

Sometimes, you may have a Cache object that implements the :ref:`PSR-16 <cache-component-psr16-caching>`
Sometimes, you may have a Cache object that implements the `PSR-16`_
standard, but need to pass it to an object that expects a :ref:`PSR-6 <cache-component-psr6-caching>`
cache adapter. Or, you might have the opposite situation. The cache component contains
two classes for bidirectional interoperability between PSR-6 and PSR-16 caches.
Expand Down Expand Up @@ -84,3 +84,5 @@ this use-case::

// now use this wherever you want
$githubApiClient = new GitHubApiClient($psr16Cache);

.. _`PSR-16`: http://www.php-fig.org/psr/psr-16/
0