ProductCategoryRds.php 199 B

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