function _drupal_session_close in Memcache Storage 7
Session handler assigned by session_set_save_handler().
This function is used to close the current session. Because Drupal stores session data in the memcached immediately on write, this function does not need to do anything.
This function should not be called directly.
Return value
boolean This function will always return TRUE.
1 string reference to '_drupal_session_close'
- drupal_session_initialize in includes/
session.inc - Initializes the session handler, starting a session if needed.
File
- includes/
session.inc, line 52 - User session handling functions.
Code
function _drupal_session_close() {
return TRUE;
}