RobotsInfoRds.php 293 B

123456789101112131415161718192021
  1. <?php
  2. namespace tw\redis;
  3. use tw\redis\traits\HashTrait;
  4. use tw\redis\traits\KeyTrait;
  5. /**
  6. * 机器人基本信息
  7. *
  8. */
  9. class RobotsInfoRds extends Base
  10. {
  11. use HashTrait;
  12. use KeyTrait;
  13. protected function key($pid = false): string
  14. {
  15. return 'robots:info';
  16. }
  17. }