memcached.php 851 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php namespace System\Session\Driver;
  2. class Memcached implements \System\Session\Driver {
  3. /**
  4. * Load a session by ID.
  5. *
  6. * @param string $id
  7. * @return array
  8. */
  9. public function load($id)
  10. {
  11. return \System\Cache::driver('memcached')->get($id);
  12. }
  13. /**
  14. * Save a session.
  15. *
  16. * @param array $session
  17. * @return void
  18. */
  19. public function save($session)
  20. {
  21. \System\Cache::driver('memcached')->put($session['id'], $session, \System\Config::get('session.lifetime'));
  22. }
  23. /**
  24. * Delete a session by ID.
  25. *
  26. * @param string $id
  27. * @return void
  28. */
  29. public function delete($id)
  30. {
  31. \System\Cache::driver('memcached')->forget($id);
  32. }
  33. /**
  34. * Delete all expired sessions.
  35. *
  36. * @param int $expiration
  37. * @return void
  38. */
  39. public function sweep($expiration)
  40. {
  41. // Memcached sessions will expire automatically.
  42. }
  43. }