@@ -1577,6 +1577,8 @@ The Redis transport DSN may looks like this:
1577
1577
MESSENGER_TRANSPORT_DSN=redis://host-01:6379,redis://host-02:6379,redis://host-03:6379,redis://host-04:6379
1578
1578
# Unix Socket Example
1579
1579
MESSENGER_TRANSPORT_DSN=redis:///var/run/redis.sock
1580
+ # TLS Example
1581
+ MESSENGER_TRANSPORT_DSN=rediss://localhost:6379/messages
1580
1582
# Multiple Redis Sentinel Hosts Example
1581
1583
MESSENGER_TRANSPORT_DSN=redis:?host[redis1:26379]&host[redis2:26379]&host[redis3:26379]&sentinel_master=db
1582
1584
@@ -1625,10 +1627,44 @@ sentinel_master String, if null or empty Sentinel null
1625
1627
support is disabled
1626
1628
======================= ===================================== =================================
1627
1629
1630
+ <<<<<<< HEAD
1628
1631
.. versionadded :: 6.1
1629
1632
1630
1633
The ``persistent_id ``, ``retry_interval ``, ``read_timeout ``, ``timeout ``, and
1631
1634
``sentinel_master `` options were introduced in Symfony 6.1.
1635
+ =======
1636
+ =================== ===================================== =================================
1637
+ Option Description Default
1638
+ =================== ===================================== =================================
1639
+ stream The Redis stream name messages
1640
+ group The Redis consumer group name symfony
1641
+ consumer Consumer name used in Redis consumer
1642
+ auto_setup Create the Redis group automatically? true
1643
+ auth The Redis password
1644
+ delete_after_ack If ``true ``, messages are deleted false
1645
+ automatically after processing them
1646
+ delete_after_reject If ``true ``, messages are deleted true
1647
+ automatically if they are rejected
1648
+ lazy Connect only when a connection is false
1649
+ really needed
1650
+ serializer How to serialize the final payload ``Redis::SERIALIZER_PHP ``
1651
+ in Redis (the
1652
+ ``Redis::OPT_SERIALIZER `` option)
1653
+ stream_max_entries The maximum number of entries which ``0 `` (which means "no trimming")
1654
+ the stream will be trimmed to. Set
1655
+ it to a large enough number to
1656
+ avoid losing pending messages
1657
+ redeliver_timeout Timeout before retrying a pending ``3600 ``
1658
+ message which is owned by an
1659
+ abandoned consumer (if a worker died
1660
+ for some reason, this will occur,
1661
+ eventually you should retry the
1662
+ message) - in seconds.
1663
+ claim_interval Interval on which pending/abandoned ``60000 `` (1 Minute)
1664
+ messages should be checked for to
1665
+ claim - in milliseconds
1666
+ =================== ===================================== =================================
1667
+ >>>>>>> 5.4
1632
1668
1633
1669
.. versionadded :: 6.4
1634
1670
0 commit comments