Skip to content
Merged
Changes from all commits
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
7 changes: 4 additions & 3 deletions rate_limiter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -461,9 +461,10 @@ simultaneous requests (e.g. three servers of a company hitting your API at the
same time). Rate limiters use :doc:`locks </lock>` to protect their operations
against these race conditions.

By default, Symfony uses the global lock configured by ``framework.lock``, but
you can use a specific :ref:`named lock <lock-named-locks>` via the
``lock_factory`` option (or none at all):
By default, if the :doc:`lock </lock>` component is installed, Symfony uses the
global lock configured by ``framework.lock``, but you can use a specific
:ref:`named lock <lock-named-locks>` via the ``lock_factory`` option (or none
at all):

.. configuration-block::

Expand Down
Loading