Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit dacb4f4

Browse filesBrowse files
committed
Document the removal of Doctrine Cache
1 parent fd2e184 commit dacb4f4
Copy full SHA for dacb4f4

File tree

4 files changed

+5
-44
lines changed
Filter options

4 files changed

+5
-44
lines changed

‎cache.rst

Copy file name to clipboardExpand all lines: cache.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The following example shows a typical usage of the cache::
2727
// ... and to remove the cache key
2828
$pool->delete('my_cache_key');
2929

30-
Symfony supports Cache Contracts, PSR-6/16 and Doctrine Cache interfaces.
30+
Symfony supports Cache Contracts and PSR-6/16 interfaces.
3131
You can read more about these at the :doc:`component documentation </components/cache>`.
3232

3333
.. _cache-configuration-with-frameworkbundle:

‎components/cache.rst

Copy file name to clipboardExpand all lines: components/cache.rst
+3-4Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ The Cache Component
1616

1717
.. tip::
1818

19-
The component also contains adapters to convert between PSR-6, PSR-16 and
20-
Doctrine caches. See :doc:`/components/cache/psr6_psr16_adapters` and
21-
:doc:`/components/cache/adapters/doctrine_adapter`.
19+
The component also contains adapters to convert between PSR-6 and PSR-16.
20+
See :doc:`/components/cache/psr6_psr16_adapters`.
2221

2322
Installation
2423
------------
@@ -159,7 +158,7 @@ concepts:
159158
**Adapter**
160159
It implements the actual caching mechanism to store the information in the
161160
filesystem, in a database, etc. The component provides several ready to use
162-
adapters for common caching backends (Redis, APCu, Doctrine, PDO, etc.)
161+
adapters for common caching backends (Redis, APCu, PDO, etc.)
163162

164163
Basic Usage (PSR-6)
165164
-------------------

‎components/cache/adapters/doctrine_adapter.rst

Copy file name to clipboardExpand all lines: components/cache/adapters/doctrine_adapter.rst
-37Lines changed: 0 additions & 37 deletions
This file was deleted.

‎components/cache/adapters/filesystem_adapter.rst

Copy file name to clipboardExpand all lines: components/cache/adapters/filesystem_adapter.rst
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ and cache root path as constructor parameters::
4545
choices. If throughput is paramount, the in-memory adapters
4646
(:ref:`Apcu <apcu-adapter>`, :ref:`Memcached <memcached-adapter>`, and
4747
:ref:`Redis <redis-adapter>`) or the database adapters
48-
(:ref:`Doctrine <doctrine-adapter>` and :ref:`PDO <pdo-doctrine-adapter>`)
49-
are recommended.
48+
(:ref:`PDO <pdo-doctrine-adapter>`) are recommended.
5049

5150
.. note::
5251

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.