BackendInterface.php 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /**
  3. * Client based Redis component
  4. */
  5. interface Redis_BackendInterface
  6. {
  7. /**
  8. * Set client
  9. *
  10. * @param mixed $client
  11. */
  12. public function setClient($client);
  13. /**
  14. * Get client
  15. *
  16. * @return mixed
  17. */
  18. public function getClient();
  19. /**
  20. * Set prefix
  21. *
  22. * @param string $prefix
  23. */
  24. public function setPrefix($prefix);
  25. /**
  26. * Get prefix
  27. *
  28. * @return string
  29. */
  30. public function getPrefix();
  31. /**
  32. * Set namespace
  33. *
  34. * @param string $namespace
  35. */
  36. public function setNamespace($namespace);
  37. /**
  38. * Get namespace
  39. *
  40. * @return string
  41. */
  42. public function getNamespace();
  43. /**
  44. * Get full key name using the set prefix
  45. *
  46. * @param string ...
  47. * Any numer of strings to append to path using the separator
  48. *
  49. * @return string
  50. */
  51. public function getKey();
  52. }