File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
Locking
2
2
=======
3
- To avoid concurrency issue the library is able to lock other executions which
4
- would run at the same time. This could happen if multiple worker (e.g. cronjobs)
3
+ To avoid concurrency issues, the library is able to lock other executions which
4
+ would run at the same time. This could happen if multiple workers (e.g. cronjobs)
5
5
run at the same time.
6
6
7
7
Each ``TaskHandler `` decides if and how many other Tasks will be blocked while a
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ to be sure that the task-table will be updated.
81
81
82
82
Locking
83
83
-------
84
- Locking is used to avoid concurrency problems when multiple task-runner runs at
84
+ Locking is used to avoid concurrency problems when multiple task-runners run at
85
85
the same time (see :doc: `locking `). This feature has to be enabled and will have
86
86
multiple different storages in the future.
87
87
@@ -105,7 +105,14 @@ Configuration Reference
105
105
storages :
106
106
file :
107
107
directory : ' %kernel.cache_dir%/tasks'
108
- mode : ' off' # One of "off"; "listener"
108
+ system_tasks :
109
+
110
+ # Prototype
111
+ -
112
+ enabled : true
113
+ handler_class : ~
114
+ workload : null
115
+ cron_expression : ~
109
116
110
117
111
118
.. _fastcgi_finish_request : http://php.net/manual/en/function.fastcgi-finish-request.php
You can’t perform that action at this time.
0 commit comments