You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo_redis_key.go 204 B

123456789
  1. package redis_key
  2. import "fmt"
  3. const REPO_PREFIX = "repo"
  4. func RepoTopNContributors(repoId int64, N int) string {
  5. return KeyJoin(REPO_PREFIX, fmt.Sprint(repoId), fmt.Sprint(N), "top_n_contributor")
  6. }