You are here

public function MemcacheSessionHandler::gc in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php \Symfony\Component\HttpFoundation\Session\Storage\Handler\MemcacheSessionHandler::gc()

File

vendor/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php, line 104

Class

MemcacheSessionHandler
MemcacheSessionHandler.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Handler

Code

public function gc($maxlifetime) {

  // not required here because memcache will auto expire the records anyhow.
  return true;
}