Base.php 436 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace tw\redis;
  3. /**
  4. * redis 操作基类
  5. *
  6. * Base HashTrait StringTrait HsetTrait
  7. * |
  8. * |
  9. * DerivedClass (use a Trait)
  10. *
  11. * DerivedClass 属于一个类型的键
  12. */
  13. abstract class Base
  14. {
  15. /**
  16. * 虚函数,返回键
  17. * @param integer|string $word: 组成键的关键部分
  18. * @return string
  19. */
  20. abstract protected function key($word = false): string;
  21. }