ProductRds.php 214 B

123456789101112131415
  1. <?php
  2. namespace tw\redis;
  3. use tw\redis\traits\HashTrait;
  4. class ProductRds extends Base
  5. {
  6. use HashTrait;
  7. protected function key($pid=false) : string
  8. {
  9. return 'store:product:' . $pid;
  10. }
  11. }