up
This commit is contained in:
parent
7394c1b49e
commit
ca29d9fe53
@ -1,7 +1,10 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"git.tijl.dev/tijl/shortify"
|
"git.tijl.dev/tijl/shortify"
|
||||||
|
"git.tijl.dev/tijl/shortify/pkg/generation"
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -13,6 +16,9 @@ func main() {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// example decoding
|
||||||
|
fmt.Println(generation.DecodeBase62("11uPoqA1W"))
|
||||||
|
|
||||||
// listen the admin interface
|
// listen the admin interface
|
||||||
|
|
||||||
unixListener, err := shortify.GetUnixListener("./shortify/admin.sock")
|
unixListener, err := shortify.GetUnixListener("./shortify/admin.sock")
|
||||||
|
@ -7,10 +7,10 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
idSize = 4 // 4 bytes for random part
|
idSize = 6 // 4 bytes for random part
|
||||||
prefixSize = 2 // 2 bytes for client prefix
|
prefixSize = 2 // 2 bytes for client prefix
|
||||||
rawIDLength = prefixSize + idSize // total 6 bytes
|
rawIDLength = prefixSize + idSize // total 6 bytes
|
||||||
base62Len = 8 // 6 bytes encoded in base62 ~ 8 chars
|
//base62Len = 8 // 6 bytes encoded in base62 ~ 8 chars
|
||||||
poolSize = 10000
|
poolSize = 10000
|
||||||
)
|
)
|
||||||
|
|
||||||
|
BIN
shortify/analytics.db
Normal file
BIN
shortify/analytics.db
Normal file
Binary file not shown.
BIN
shortify/analytics.db.wal
Normal file
BIN
shortify/analytics.db.wal
Normal file
Binary file not shown.
BIN
shortify/database.db
Normal file
BIN
shortify/database.db
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user