ProductCategoryRds.php 230 B

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