Stop using parallel SQL queries for tables

Refs:
- #2189
This commit is contained in:
Simon Willison 2023-09-20 15:10:55 -07:00
commit 12395ba6ed
2 changed files with 7 additions and 10 deletions

View file

@ -1317,6 +1317,7 @@ This example uses the :ref:`register_routes() <plugin_register_routes>` plugin h
(r"/parallel-queries$", parallel_queries),
]
Note that running parallel SQL queries in this way has `been known to cause problems in the past <https://github.com/simonw/datasette/issues/2189>`__, so treat this example with caution.
Adding ``?_trace=1`` will show that the trace covers both of those child tasks.