(prd period, limit int, withCache ...bool)
| 107 | } |
| 108 | |
| 109 | func (m *BookCounter) StarSort(prd period, limit int, withCache ...bool) (books []SortedBook) { |
| 110 | return m._sort(prd, limit, "star", withCache...) |
| 111 | } |
| 112 | |
| 113 | func (m *BookCounter) PageViewSort(prd period, limit int, withCache ...bool) (books []SortedBook) { |
| 114 | return m._sort(prd, limit, "vcnt", withCache...) |