bench-forgejo/models/migrations
Jason Song 9607750b5e
Replace fmt.Sprintf with hex.EncodeToString (#21960)
`hex.EncodeToString` has better performance than `fmt.Sprintf("%x",
[]byte)`, we should use it as much as possible.

I'm not an extreme fan of performance, so I think there are some
exceptions:

- `fmt.Sprintf("%x", func(...)[N]byte())`
- We can't slice the function return value directly, and it's not worth
adding lines.
    ```diff
    func A()[20]byte { ... }
    - a := fmt.Sprintf("%x", A())
    - a := hex.EncodeToString(A()[:]) // invalid
    + tmp := A()
    + a := hex.EncodeToString(tmp[:])
    ```
- `fmt.Sprintf("%X", []byte)`
- `strings.ToUpper(hex.EncodeToString(bytes))` has even worse
performance.
2022-11-28 11:19:18 +00:00
..
base Replace fmt.Sprintf with hex.EncodeToString (#21960) 2022-11-28 11:19:18 +00:00
fixtures Move migration test fixtures to the correct directories (#21901) 2022-11-23 18:24:55 +08:00
v1_6 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_7 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_8 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_9 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_10 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_11 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_12 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_13 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_14 Replace fmt.Sprintf with hex.EncodeToString (#21960) 2022-11-28 11:19:18 +00:00
v1_15 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_16 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_17 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_18 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
v1_19 Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00
migrations.go Implement FSFE REUSE for golang files (#21840) 2022-11-27 18:20:29 +00:00