es.go 451 B

1234567891011121314151617181920
  1. package constants
  2. type SearchType int32
  3. // 1、按照用户id查询2、按照用户推文权限搜索3、搜索全文
  4. const (
  5. SearchByUserID SearchType = iota + 1
  6. SearchByVisit
  7. SearchByContent
  8. )
  9. type EsSortType int32
  10. // 1-按照用户热度排序2-按照用户创建时间排序3-按照用户最后回复时间排序4-用户置顶排序
  11. const (
  12. SortByUserScore EsSortType = iota + 1
  13. SortByUserCreateTime
  14. SortByUserLastReply
  15. SortByUserTop
  16. )