public function SessionProxy_Backend_Native::destroyAllForUser in Session Proxy 7
Native implementation is opaque, and cannot allow us to index session: it is impossible to proceed with this cleaning.
Overrides SessionProxy_Backend_Base::destroyAllForUser
See also
SessionProxy_Backend_Interface::destroyAllForUser()
File
- lib/
SessionProxy/ Backend/ Native.php, line 58
Class
- SessionProxy_Backend_Native
- Native implementation of session backend: use PHP native session handling. Using it allows to use built-in extensions session handling, such as Redis or Memcache extensions features, which are known to be really fast.
Code
public function destroyAllForUser($uid) {
return;
}