数据库
首页 > 数据库> > golang 实现redis 排行榜同分值情况下按时间升序排序

golang 实现redis 排行榜同分值情况下按时间升序排序

作者:互联网

在排行榜中实现分数和时间排序 分数相同则按照时间排序
需求分析
golang 代码
package main

import (
	"fmt"
	"sort"
	"time"
)

var scores []int64

func main() {
	sorts()
	//bit()
}

func bit() {
	fmt.Println(len(fmt.Sprintf("%d", 1<<9)))
	fmt.Println(len(fmt.Sprintf("%d", 1<<41)))
	fmt.Println(len(fmt.Sprintf("%d", 1<<23)))
	fmt.Println(len("1000000"))
}

func sorts() {
	now := time.Now().UnixMilli()
	for i := 1; i < 10; i++ {
		scores = append(scores, toScore(int64(i+100000), now))
	}

	sort.Slice(scores, func(i, j int) bool {
		return scores[i] > scores[j]
	})
	for _, score := range scores {
		fmt.Println(load(score))
		//fmt.Println(score)
	}
}

func toScore(point int64, periodEndTimestamp int64) (score int64) {
	score = (score | point) << 41
	score = score | periodEndTimestamp
	return
}

func load(score int64) int64 {
	return score >> 41
}

标签:fmt,redis,golang,Println,score,int64,func,scores,升序
来源: https://www.cnblogs.com/guanchaoguo/p/16282661.html