Memcached prefix

Hello!

Just trying to get to grips with Kirby 3. I have memcached all working, I was just wondering what prefix is in the docs:

[
  'cache' => [
      'pages' => [
          'active' => true,
              'type'   => 'memcached',
              'host'   => 'localhost',
              'port'   => '11211',
              'prefix'  => 'pages',
              'ignore' => function ($page) {
                return $page->id() === 'something';
              }
      ]
  ]
];

Thanks

Edit: return is missing in the docs

1 Like

:white_check_mark:

(and some more characters)

Just an optional string that can be used for the key, defaults to null.

Is that for when running multiple sites on the same server?