Skip to content
Snippets Groups Projects
Verified Commit 52240470 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3414287 by catch, longwave: Avoid reading session from the database...

Issue #3414287 by catch, longwave: Avoid reading session from the database multiple times during a big pipe request

(cherry picked from commit 213906e2)
parent 9044a20c
No related branches found
No related tags found
26 merge requests!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!10602Issue #3438769 by vinmayiswamy, antonnavi, michelle, amateescu: Sub workspace does not clear,!10301Issue #3469309 by mstrelan, smustgrave, moshe weitzman: Use one-time login...,!10187Issue #3487488 by dakwamine: ExtensionMimeTypeGuesser::guessMimeType must support file names with "0" (zero) like foo.0.zip,!9944Issue #3483353: Consider making the createCopy config action optionally fail...,!9929Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9787Resolve issue 3479427 - bootstrap barrio issue under Windows,!9742Issue #3463908 by catch, quietone: Split OptionsFieldUiTest into two,!9526Issue #3458177 by mondrake, catch, quietone, godotislate, longwave, larowlan,...,!8738Issue #3424162 by camilledavis, dineshkumarbollu, smustgrave: Claro...,!8704Make greek characters available in ckeditor5,!8597Draft: Issue #3442259 by catch, quietone, dww: Reduce time of Migrate Upgrade tests...,!8533Issue #3446962 by kim.pepper: Remove incorrectly added...,!8517Issue #3443748 by NexusNovaz, smustgrave: Testcase creates false positive,!8325Update file Sort.php,!8095Expose document root on install,!7930Resolve #3427374 "Taxonomytid viewsargumentdefault plugin",!7627Issue #3439440 by nicxvan, Binoli Lalani, longwave: Remove country support from DateFormatter,!7445Issue #3440169: When using drupalGet(), provide an associative array for $headers,!7401#3271894 Fix documented StreamWrapperInterface return types for realpath() and dirname(),!7384Add constraints to system.advisories,!7078Issue #3320569 by Spokje, mondrake, smustgrave, longwave, quietone, Lendude,...,!6622Issue #2559833 by piggito, mohit_aghera, larowlan, guptahemant, vakulrai,...,!6502Draft: Resolve #2938524 "Plach testing issue",!38582585169-10.1.x,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key
Pipeline #101557 passed with warnings
Pipeline: drupal

#101583

    Pipeline: drupal

    #101576

      Pipeline: drupal

      #101569

        +1
        <?php
        namespace Drupal\Core\Session;
        /**
        * Indicates that sessions for this response should be kept open after sending.
        *
        * By default, Drupal closes sessions as soon as the response is sent. If
        * a response implements this interface, Drupal will skip this behavior and
        * assume that the session will be closed manually later in the request.
        *
        * @see Drupal\Core\StackMiddleware\Session
        * @see Drupal\big_pipe\src\Render\BigPipeResponse
        * @internal
        */
        interface ResponseKeepSessionOpenInterface {}
        ...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
        namespace Drupal\Core\StackMiddleware; namespace Drupal\Core\StackMiddleware;
        use Drupal\Core\Session\ResponseKeepSessionOpenInterface;
        use Symfony\Component\DependencyInjection\ContainerAwareTrait; use Symfony\Component\DependencyInjection\ContainerAwareTrait;
        use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
        use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
        ...@@ -58,7 +59,7 @@ public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = TR ...@@ -58,7 +59,7 @@ public function handle(Request $request, $type = self::MAIN_REQUEST, $catch = TR
        $result = $this->httpKernel->handle($request, $type, $catch); $result = $this->httpKernel->handle($request, $type, $catch);
        if ($type === self::MAIN_REQUEST && PHP_SAPI !== 'cli' && $request->hasSession()) { if ($type === self::MAIN_REQUEST && !$result instanceof ResponseKeepSessionOpenInterface && PHP_SAPI !== 'cli' && $request->hasSession()) {
        $request->getSession()->save(); $request->getSession()->save();
        } }
        ......
        ...@@ -220,16 +220,6 @@ public function __construct(RendererInterface $renderer, SessionInterface $sessi ...@@ -220,16 +220,6 @@ public function __construct(RendererInterface $renderer, SessionInterface $sessi
        } }
        } }
        /**
        * Performs tasks before sending content (and rendering placeholders).
        */
        protected function performPreSendTasks() {
        // The content in the placeholders may depend on the session, and by the
        // time the response is sent (see index.php), the session is already
        // closed. Reopen it for the duration that we are rendering placeholders.
        $this->session->start();
        }
        /** /**
        * Performs tasks after sending content (and rendering placeholders). * Performs tasks after sending content (and rendering placeholders).
        */ */
        ...@@ -282,8 +272,6 @@ public function sendContent(BigPipeResponse $response) { ...@@ -282,8 +272,6 @@ public function sendContent(BigPipeResponse $response) {
        $cumulative_assets = AttachedAssets::createFromRenderArray(['#attached' => $attachments]); $cumulative_assets = AttachedAssets::createFromRenderArray(['#attached' => $attachments]);
        $cumulative_assets->setAlreadyLoadedLibraries($attachments['library']); $cumulative_assets->setAlreadyLoadedLibraries($attachments['library']);
        $this->performPreSendTasks();
        // Find the closing </body> tag and get the strings before and after. But be // Find the closing </body> tag and get the strings before and after. But be
        // careful to use the latest occurrence of the string "</body>", to ensure // careful to use the latest occurrence of the string "</body>", to ensure
        // that strings in inline JavaScript or CDATA sections aren't used instead. // that strings in inline JavaScript or CDATA sections aren't used instead.
        ......
        ...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
        namespace Drupal\big_pipe\Render; namespace Drupal\big_pipe\Render;
        use Drupal\Core\Render\HtmlResponse; use Drupal\Core\Render\HtmlResponse;
        use Drupal\Core\Session\ResponseKeepSessionOpenInterface;
        /** /**
        * A response that is sent in chunks by the BigPipe service. * A response that is sent in chunks by the BigPipe service.
        ...@@ -18,7 +19,7 @@ ...@@ -18,7 +19,7 @@
        * created in https://www.drupal.org/node/2577631. Only code internal to * created in https://www.drupal.org/node/2577631. Only code internal to
        * BigPipe should instantiate or type hint to this class. * BigPipe should instantiate or type hint to this class.
        */ */
        class BigPipeResponse extends HtmlResponse { class BigPipeResponse extends HtmlResponse implements ResponseKeepSessionOpenInterface {
        /** /**
        * The BigPipe service. * The BigPipe service.
        ......
        ...@@ -35,8 +35,7 @@ public function testFrontPageAuthenticatedWarmCache(): void { ...@@ -35,8 +35,7 @@ public function testFrontPageAuthenticatedWarmCache(): void {
        $performance_data = $this->collectPerformanceData(function () { $performance_data = $this->collectPerformanceData(function () {
        $this->drupalGet('<front>'); $this->drupalGet('<front>');
        }, 'authenticatedFrontPage'); }, 'authenticatedFrontPage');
        $this->assertGreaterThanOrEqual(10, $performance_data->getQueryCount()); $this->assertCountBetween(9, 11, $performance_data->getQueryCount());
        $this->assertLessThanOrEqual(12, $performance_data->getQueryCount());
        $this->assertSame(45, $performance_data->getCacheGetCount()); $this->assertSame(45, $performance_data->getCacheGetCount());
        $this->assertSame(0, $performance_data->getCacheSetCount()); $this->assertSame(0, $performance_data->getCacheSetCount());
        $this->assertSame(0, $performance_data->getCacheDeleteCount()); $this->assertSame(0, $performance_data->getCacheDeleteCount());
        ......
        ...@@ -113,7 +113,7 @@ public function testLogin(): void { ...@@ -113,7 +113,7 @@ public function testLogin(): void {
        $this->submitLoginForm($account); $this->submitLoginForm($account);
        }); });
        $this->assertCountBetween(26, 31, $performance_data->getQueryCount()); $this->assertCountBetween(25, 30, $performance_data->getQueryCount());
        $this->assertSame(64, $performance_data->getCacheGetCount()); $this->assertSame(64, $performance_data->getCacheGetCount());
        $this->assertSame(1, $performance_data->getCacheSetCount()); $this->assertSame(1, $performance_data->getCacheSetCount());
        $this->assertSame(1, $performance_data->getCacheDeleteCount()); $this->assertSame(1, $performance_data->getCacheDeleteCount());
        ...@@ -146,7 +146,7 @@ public function testLoginBlock(): void { ...@@ -146,7 +146,7 @@ public function testLoginBlock(): void {
        $performance_data = $this->collectPerformanceData(function () use ($account) { $performance_data = $this->collectPerformanceData(function () use ($account) {
        $this->submitLoginForm($account); $this->submitLoginForm($account);
        }); });
        $this->assertCountBetween(31, 34, $performance_data->getQueryCount()); $this->assertCountBetween(30, 33, $performance_data->getQueryCount());
        $this->assertSame(85, $performance_data->getCacheGetCount()); $this->assertSame(85, $performance_data->getCacheGetCount());
        $this->assertSame(1, $performance_data->getCacheSetCount()); $this->assertSame(1, $performance_data->getCacheSetCount());
        $this->assertSame(1, $performance_data->getCacheDeleteCount()); $this->assertSame(1, $performance_data->getCacheDeleteCount());
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment