File tree 5 files changed +10
-21
lines changed
Filter options
components/cache/adapters
5 files changed +10
-21
lines changed
Original file line number Diff line number Diff line change @@ -120,7 +120,6 @@ option names and their respective values::
120
120
121
121
// associative array of configuration options
122
122
[
123
- 'compression' => true,
124
123
'libketama_compatible' => true,
125
124
'serializer' => 'igbinary',
126
125
]
@@ -139,17 +138,6 @@ Available Options
139
138
server(s). Any action that retrieves data, quits the connection, or closes
140
139
down the connection will cause the buffer to be committed.
141
140
142
- ``compression `` (type: ``bool ``, default: ``true ``)
143
- Enables or disables payload compression, where item values longer than 100
144
- bytes are compressed during storage and decompressed during retrieval.
145
-
146
- ``compression_type `` (type: ``string ``)
147
- Specifies the compression method used on value payloads. when the
148
- **compression ** option is enabled.
149
-
150
- Valid option values include ``fastlz `` and ``zlib ``, with a default value
151
- that *varies based on flags used at compilation *.
152
-
153
141
``connect_timeout `` (type: ``int ``, default: ``1000 ``)
154
142
Specifies the timeout (in milliseconds) of socket connection operations when
155
143
the ``no_block `` option is enabled.
Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ array of ``key => value`` pairs representing option names and their respective v
123
123
124
124
// associative array of configuration options
125
125
[
126
- 'compression' => true,
127
126
'lazy' => false,
128
127
'persistent' => 0,
129
128
'persistent_id' => null,
@@ -143,10 +142,6 @@ Available Options
143
142
If none is specified, it will return ``\Redis `` if the ``redis `` extension is
144
143
available, and ``\Predis\Client `` otherwise.
145
144
146
- ``compression `` (type: ``bool ``, default: ``true ``)
147
- Enables or disables compression of items. This requires phpredis v4 or higher with
148
- LZF support enabled.
149
-
150
145
``lazy `` (type: ``bool ``, default: ``false ``)
151
146
Enables or disables lazy connections to the backend. It's ``false `` by
152
147
default when using this as a stand-alone component and ``true `` by default
Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ Symfony provides the following env var processors:
327
327
328
328
# config/packages/framework.yaml
329
329
parameters :
330
- env(TRUSTED_HOSTS) : " 10.0.0.1, 10.0.0.2"
330
+ env(TRUSTED_HOSTS) : " 10.0.0.1,10.0.0.2"
331
331
framework :
332
332
trusted_hosts : ' %env(csv:TRUSTED_HOSTS)%'
333
333
@@ -344,7 +344,7 @@ Symfony provides the following env var processors:
344
344
https://symfony.com/schema/dic/symfony/symfony-1.0.xsd" >
345
345
346
346
<parameters >
347
- <parameter key =" env(TRUSTED_HOSTS)" >[" 10.0.0.1", " 10.0.0.2"] </parameter >
347
+ <parameter key =" env(TRUSTED_HOSTS)" >10.0.0.1, 10.0.0.2</parameter >
348
348
</parameters >
349
349
350
350
<framework : config trusted-hosts =" %env(csv:TRUSTED_HOSTS)%" />
@@ -353,7 +353,7 @@ Symfony provides the following env var processors:
353
353
.. code-block :: php
354
354
355
355
// config/packages/framework.php
356
- $container->setParameter('env(TRUSTED_HOSTS)', '[" 10.0.0.1", " 10.0.0.2"] ');
356
+ $container->setParameter('env(TRUSTED_HOSTS)', '10.0.0.1, 10.0.0.2');
357
357
$container->loadFromExtension('framework', [
358
358
'trusted_hosts' => '%env(csv:TRUSTED_HOSTS)%',
359
359
]);
Original file line number Diff line number Diff line change @@ -1126,6 +1126,12 @@ auto_setup Whether the table should be created
1126
1126
automatically during send / get. true
1127
1127
================== ===================================== ======================
1128
1128
1129
+ .. caution ::
1130
+
1131
+ The datetime property of the messages stored in the database uses the
1132
+ timezone of the current system. This may cause issues if multiple machines
1133
+ with different timezone configuration use the same storage.
1134
+
1129
1135
Beanstalkd Transport
1130
1136
~~~~~~~~~~~~~~~~~~~~
1131
1137
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ The ``translation:update`` command looks for missing translations in:
385
385
defined in the :ref: `twig.default_path <config-twig-default-path >` and
386
386
:ref: `twig.paths <config-twig-paths >` config options);
387
387
* Any PHP file/class that injects or :doc: `autowires </service_container/autowiring >`
388
- the ``translator `` service and makes calls to the ``trans() `` function .
388
+ the ``translator `` service and makes calls to the ``trans() `` method .
389
389
390
390
.. _translation-resource-locations :
391
391
You can’t perform that action at this time.
0 commit comments